Is there a way to get the following text to match? If the '\' in '1\V' is
changed, the regex matches. I would like to maintain the RAW text if
possible. 

$c = 'JUA_APPS01\VOL1:\APPS';
$d = 'JUA_APPS01\VOL';
if ($c =~ /$d/)
{
        print "matched\n";
}
else
{
        print "Not Matched\n";
}

_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Reply via email to