all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
9
Task/Substring/Ruby/substring.rb
Normal file
9
Task/Substring/Ruby/substring.rb
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
str = 'abcdefgh'
|
||||
n = 2
|
||||
m = 3
|
||||
puts str[n, m]
|
||||
puts str[n..-1]
|
||||
puts str[0..-2]
|
||||
puts str[str.index('d'), m]
|
||||
puts str[str.index('de'), m]
|
||||
puts str[/a.*d/]
|
||||
Loading…
Add table
Add a link
Reference in a new issue