in reply to Re: Regular Expression Help!
in thread Regular Expression Help!
my $x = ""; if($x!~//g) { print "\n There is true data\n"; }
my $x = " "; # just spaces if($x!~/\s+/g) { print "\n There is true data\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Regular Expression Help!
by kennethk (Abbot) on Jul 02, 2010 at 19:34 UTC | |
|
Re^3: Regular Expression Help!
by ikegami (Patriarch) on Jul 02, 2010 at 19:42 UTC |