myspacee Posted June 8, 2009 Posted June 8, 2009 hello, never learn to extract value from its jail I've : tv">113</td> = 113 tp">23,78</td> = 23,78 Anyone can help me ? m.
montymintypie Posted June 8, 2009 Posted June 8, 2009 Use regular expressions:$string = 'tv">113</td>' $array = StringRegExp($string, '(?i)tv">(.*?)</(?i)td>', 1) For $i = 0 to UBound($array) - 1 $result = $array[$i] Next MsgBox(0,"Result:","Result = " & $result)Read up on regular expressions in the help file, they are awesome.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now