Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ruby string match ignore case

I am trying to create a match query which selects text from a string between two words. I can't seem to figure out how to make the search case insensitive. For example consider the text:

contents = "cat
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec blandit feugiat mi, eu lacinia quam tincidunt eu. Donec eleifend adipiscing neque, in porta dolor vestibulum at. Curabitur id elit vitae nunc feugiat varius. Maecenas euismod euismod mi, eu blandit lectus.
dog"

the ruby code to return me the latin code between the words cat and dog is

contents.match(/cat(.*)dog/m)[1].strip

At the moment my "match" query only works if cat and dog are lowercase but I need to cater for if cat and dog are uppercase or the first letter is upper case.

Not quite sure where to stick the /i operator.

like image 423
ekynox Avatar asked Dec 10 '11 04:12

ekynox


1 Answers

Next to the "m":

contents.match(/cat(.*)dog/im)[1].strip
like image 114
coder_tim Avatar answered Sep 21 '22 07:09

coder_tim