D
David Lozzi
Howdy,
I'm trying to get the values from a string of name/value pairs. I'm using a RegEx (I'm very new to RegEx) expression as seen below
Dim regExp As Regex
Dim m As Match
m = regExp.Match(strResult, "RESULT=((.|\n)*?)&")
If m.Success Then
lblTest.Text = m.Value
End If
The value returned is RESULT=1&. I just want the value of the pair, not the entire pair returned....
Thanks!
--
D a v i d L o z z i
Data & Web Technology Specialist
Delphi Technology Solutions, Inc.
Wilmington, MA
dlozzi@(remove this)delphi-ts.com - www.delphi-ts.com
I'm trying to get the values from a string of name/value pairs. I'm using a RegEx (I'm very new to RegEx) expression as seen below
Dim regExp As Regex
Dim m As Match
m = regExp.Match(strResult, "RESULT=((.|\n)*?)&")
If m.Success Then
lblTest.Text = m.Value
End If
The value returned is RESULT=1&. I just want the value of the pair, not the entire pair returned....
Thanks!
--
D a v i d L o z z i
Data & Web Technology Specialist
Delphi Technology Solutions, Inc.
Wilmington, MA
dlozzi@(remove this)delphi-ts.com - www.delphi-ts.com