简体   繁体   中英

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.

在“m”旁边:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM