Hello All,
I'm working on a script to search for the values in an SMS mif, I'm sure that many of you know what the invormation in a mif looks like. All vaules are enclose in ()'s, some values are for the form and some values are machine/user information. The locations of the form data and the user/machine data are static in order but not in string length.
It would look something like this:
(1)(don't want)(don't want)(3)(4)(howdy)(6)(1)(hola)(13)(7)
In perl I would use an expression like this:
$line = "(1)(don't want)(don't want)(3)(4)(howdy)(6)(1)(hola)(13)(7)"
if ( $line=~/((.*?))/ ){print "$_\n";}
I'm not sure as to how to pull the values in vbs though. Does anybody know what a similar expression would look like in vbs?
Thanks in advance.
I'm working on a script to search for the values in an SMS mif, I'm sure that many of you know what the invormation in a mif looks like. All vaules are enclose in ()'s, some values are for the form and some values are machine/user information. The locations of the form data and the user/machine data are static in order but not in string length.
It would look something like this:
(1)(don't want)(don't want)(3)(4)(howdy)(6)(1)(hola)(13)(7)
In perl I would use an expression like this:
$line = "(1)(don't want)(don't want)(3)(4)(howdy)(6)(1)(hola)(13)(7)"
if ( $line=~/((.*?))/ ){print "$_\n";}
I'm not sure as to how to pull the values in vbs though. Does anybody know what a similar expression would look like in vbs?
Thanks in advance.