| View previous topic :: View next topic |
| Author |
Message |
marculos Newbie
Joined: 08 Feb 2007 Posts: 17
|
Posted: Thu Sep 13, 2007 9:32 am Post subject: Issue with @Match |
|
|
Hi I am trying to do an @MATCH in a file for USMT error Code (status) = 4 but I think the = sign is causing issues.
When I do an @MATCH I get the following 1=4)
The code is below, ideas would be most apprecaited
LIST CREATE, 1
LIST LOADFILE, 1, C:\Progra~1\USMT301\test.txt
%M = @MATCH(1,Info [0x000000] USMT error Code (status) =4)
info %M |
|
| Back to top |
|
 |
marculos Newbie
Joined: 08 Feb 2007 Posts: 17
|
Posted: Thu Sep 13, 2007 9:35 am Post subject: |
|
|
| or is it the brackets ? excuse my stupidity have not used VDS for a long time ... |
|
| Back to top |
|
 |
marculos Newbie
Joined: 08 Feb 2007 Posts: 17
|
Posted: Thu Sep 13, 2007 9:38 am Post subject: |
|
|
| doh ok it was the brackets so used the @CHR(40) and CHR(41) , sorry !!!!!!!!!!!! |
|
| Back to top |
|
 |
Aslan Valued Contributor


Joined: 31 May 2001 Posts: 589 Location: Memphis, TN USA
|
Posted: Thu Sep 13, 2007 10:07 pm Post subject: |
|
|
OR put the string you're trying to match in double quotes (")
%M = @MATCH(1,"Info [0x000000] USMT error Code (status) =4") |
|
| Back to top |
|
 |
|