RosettaCodeData/Task/Regular-expressions/Ruby/regular-expressions-1.rb

4 lines
116 B
Ruby
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
str = "I am a string"
p "Ends with 'string'" if str =~ /string$/
p "Does not start with 'You'" unless str =~ /^You/