Just wondering if anyone would know the best way to do the following in VBSCRIPT. This is written using PERL, but need the same in VB...
$string will be an html page read in using ASPTear on the VB side. I just need help with the VB code to go through each line and store certain information into variables for use later.
Thanks!
Troy
Code:
for (split '\n', $string)
{
$userID = $1 if /UID\.+\s*(.+)/;
$fullName = $1 if /Full Name\.+\s*(.+)/;
#...etc...
}
$string will be an html page read in using ASPTear on the VB side. I just need help with the VB code to go through each line and store certain information into variables for use later.
Thanks!
Troy