More testing shows that...

These two statements fail:
print "\nYES\n" if $data =~ /\x0D/s;
print "\nYES\n" if $data =~ /\x0d/s;

These two statements succeed:
print "\nYES\n" if $data =~ /\x0A/s;
print "\nYES\n" if $data =~ /\x0a/s;

As I stated before two different HEX editors show od oa sequences in my file
and I can print the $data variable to STDOUT successfully.

This is running ActiveState's build 633.
_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to