Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: making regex case insensitive

by scorpio17 (Canon)
on Jul 16, 2013 at 14:15 UTC ( [id://1044616]=note: print w/replies, xml ) Need Help??


in reply to making regex case insensitive

if ($array_A[$ds] =~ /test/i)

Replies are listed 'Best First'.
Re^2: making regex case insensitive
by shawnhcorey (Friar) on Jul 16, 2013 at 22:45 UTC

    There is also:

    /(?i:test)/

    This is especially useful if you want part of the pattern case-sensitive and part not. For example, the first letter may be upper or lowercase but the rest must be lowercase.

    /(?i:t)est/

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1044616]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (2)
As of 2024-04-26 00:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found