in reply to how can I use regular expresion if my string to be matched has round brackets
Lots of good regex info if you search around Perl Monks try Perlmonks Tutorial: Regular Expressions Tutorial, the Basics (for BEGINNERS)I have also found http://www.regular-expressions.info/quickstart.html very helpful working with regex's. Lots of good examples.I found tools like http://www.txt2re.com/ or Eclipses regex tool to be helpful in debugging my regex commands.Good Luck.#!/pw/prod/svr4/bin/perl use warnings; use strict; use Data::Dumper; my $ipn= qr/\( going \) there/; my $jpn="( going ) there"; if($jpn =~ m/$ipn/) { print "yes"; } else {print "nomatch";}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how can I use regular expresion if my string to be matched has round brackets
by lightoverhead (Pilgrim) on Oct 06, 2008 at 19:06 UTC | |
by GrandFather (Saint) on Oct 06, 2008 at 23:00 UTC |