Jump to content

Recommended Posts

Posted

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 ?

  • Moderators
Posted (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 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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...