To: Perl-Win32-Users Mailing List
Subject: Regarding Regular Expressions...
Hello, I have a pattern that matches as follows:
@sessuses = ($line =~ m/.[^']\=\s*Session;
This matches for every instance where I use a Session Variable
in some code and does it quite well. This is an ASP p
Hello, I have a pattern that matches as follows:
@sessuses = ($line =~ m/.[^']\=\s*Session\(\"(.+?)\"\)/gi);
This matches for every instance where I use a Session Variable
in some code and does it quite well. This is an ASP processing
script for documentation purposes (BTW)... However, to ma