LOULOU Posted November 29, 2007 Share Posted November 29, 2007 I want to extract "Bonjour" from the following tag <TR CLASS="LIL">Bonjour <TD> But the function $avarray = _StringBetween ( $html,'<TR CLASS="LIL"><TD>',"</TD>") RetURn nothing can anyone help me to solve that problem ? Link to comment Share on other sites More sharing options...
Emperor Posted November 29, 2007 Share Posted November 29, 2007 #include <String.au3> $HTML = '<TR CLASS="LIL">Bonjour</TD>' $Temp = _StringBetween($HTML, '<TR CLASS="LIL">', '</TD>') MsgBox(0, "", $Temp[0])Works for me. Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted November 29, 2007 Moderators Share Posted November 29, 2007 (edited) 1st... your example and your help question string doesn't match... be sure you have that right. 2nd... you are using StringRegExp method, so you have to escape special characters such as "<" and "/" with "\" such as "\<" and "\/". 3rd... _StringBetween() returns an array. If your example is correct:#include <array.au3> #include <string.au3> $avarray = _StringBetween ( $html,'\<TR CLASS="LIL">\<TD>',"\<\/TD>") _ArrayDisplay($avarray, "StringBetween") Edited November 29, 2007 by SmOke_N Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Link to comment Share on other sites More sharing options...
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