RosettaCodeData/Task/Substring/Ruby/substring.rb
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

9 lines
150 B
Ruby

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/]