hey guys,
this is one regexp i did and it worked
but i dunno if it's correct
could anyone verfy
for the sentence in the file
/* 1 TB Hi VTP-10 SESSION=01471 USERID=##$@@# STARTED 2008-05-09 09:17:00 */
i want to match things between 1 TBHLR to USERID
so i used this
[CODE=perl]
if ($data1 =~ /1 TBHLR.+USERID/)
[/CODE]
is this matching alright?
this is one regexp i did and it worked
but i dunno if it's correct
could anyone verfy
for the sentence in the file
/* 1 TB Hi VTP-10 SESSION=01471 USERID=##$@@# STARTED 2008-05-09 09:17:00 */
i want to match things between 1 TBHLR to USERID
so i used this
[CODE=perl]
if ($data1 =~ /1 TBHLR.+USERID/)
[/CODE]
is this matching alright?
Comment