[Catalyst] Help with static and RegEx

David Storrs dstorrs at dstorrs.com
Wed Jun 29 16:10:09 CEST 2005


On Jun 29, 2005, at 5:38 AM, Mike McKay wrote:

> I need to to make it ignore case, like m/foo/i - but I don't now  
> how to do it with the Regex notation - can anyone help?

/foo/i  is equivalent to
/(?i)foo/

--Dks



More information about the Catalyst mailing list