[EMAIL PROTECTED] quick_test]$ cat test_regex.pl
#!/usr/bin/perl -w

use strict;

my $line = "test_text";

if($line =~ m/^\d*/)
{
        print "true\n";
} else {
        print "false\n";
}

if($line =~ m/^\d/)
{
        print "true\n";
} else {
        print "false\n";
}
[EMAIL PROTECTED] quick_test]$ ./test_regex.pl
true
false
[EMAIL PROTECTED] quick_test]$

why is the first one true?

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to