G
grocery_stocker
When I run the following...
#!/usr/bin/perl -w
open (PRODUCT,"C:\Documents and Settings\root\Desktop\wd\hp.mhtml") ||
die "Cant open: $!;
I get the following
Unrecognized escape \D passed through at ./parse.pl line 3.
Unrecognized escape \D passed through at ./parse.pl line 3.
Unrecognized escape \w passed through at ./parse.pl line 3.
Unrecognized escape \h passed through at ./parse.pl line 3.
Can't find string terminator '"' anywhere before EOF at ./parse.pl
line 3.
What escape characters is Windows complaining about and how do I fix
them?
Chad
#!/usr/bin/perl -w
open (PRODUCT,"C:\Documents and Settings\root\Desktop\wd\hp.mhtml") ||
die "Cant open: $!;
I get the following
Unrecognized escape \D passed through at ./parse.pl line 3.
Unrecognized escape \D passed through at ./parse.pl line 3.
Unrecognized escape \w passed through at ./parse.pl line 3.
Unrecognized escape \h passed through at ./parse.pl line 3.
Can't find string terminator '"' anywhere before EOF at ./parse.pl
line 3.
What escape characters is Windows complaining about and how do I fix
them?
Chad