in reply to Re: parsing question
in thread parsing question
Could you please tell me as why the /_test(?:\s+)(?!<)/ is wrong? I want to learn. Thanks!if ($str =~ /_test(?>\s+)(?!<)/) { print "test ok\n" } if ($str =~ /_test(?:\s+)(?!<)/) { print "test ok\n" }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: parsing question
by Abigail-II (Bishop) on Sep 15, 2003 at 11:36 UTC | |
by Roger (Parson) on Sep 16, 2003 at 01:14 UTC |