1. Recover doesn't match regular expression - Perl
2. Doesn't match executable version
I run perldoc in windows, it shows the following error, please ask how to solve it, thanks! Perl lib version (v5.6.1) doesn't match executable version (v5.8.8) at \product\10.1.0\Db_1\perl\5.6.1\lib\MSWin32-x86/Config.pm line 21. Compilation failed in require at c:/Perl/lib/Pod/Perldoc.pm line 7. BEGIN failed--compilation aborted at c:/Perl/lib/Pod/Perldoc.pm line 7 Compilation failed in require at c:\Perl\bin/perldoc.bat line 22. BEGIN failed--compilation aborted at c:\Perl\bin/perldoc.bat line 22.
3. DBD::mysql::st execute failed: Column count doesn't match value count at row 1 a - Perl
4. :mysql::st execute failed: Column count doesn't match value count at row 1 a
5. regular expression that doesn't match any string - Perl
6. regular expression that doesn't match any string [repost as thread root]
Reposted as new thread:
[Note: I am reposting this as a new message, in order to start a new thread.
Please remember to use the new message command, rather than a reply, when
starting a new subject. For many of us with threaded browsers, your message got
lost way out on an unrelated thread.--Joseph]
Hi all
Just for fun (really no context) i was wondering how to create regular
expressions that
will never match any string.
/^[^\w\W]/ is one of them am I right? No string can start with a character
that is neither alphanumeric nor nonalhanumeric.
But why does
/^[^.\n]/ matches .
doesn't that mean the string should begin a character that is not any
character or not a newline(nothing else should be left).
Could someone enligthen me?
Below is to code I use to check.
thanks
oznur
use strict;
use warnings;
my $string="does it match";
if ($string=~/(^[^\w\W])/){
print "matches $1\n";
}
else {
print "doesn't match \n";
}
if ($string=~/(^[^.\n])/){
print "matches $1\n";
}
else {
print "doesn't match \n";
}
7. Perl lib version (v5.6.0) doesn't match executable version (v5.8.0) - Perl