Jump to content

How to read from XML page


Recommended Posts

I am using the below code to get the string between HTML tags but I am not getting what I want. Can anyone help.
 
$sUrl = InputBox ("Required Information", "Enter the URL", "", "", - 1, -1, 0, 0)
$oIE = _IECreate($sUrl)
$sHTML = _IEDocReadHTML($oIE)
$Results = _StringBetween($sHTML, '<status','/status>')
MsgBox(0, 'DONE!!!', 'The error code is ' & $Results)
Edited by sammy1983
Link to comment
Share on other sites

_StringBetween returns "A 0 based $array[0] contains the first found string". So you can't use MsgBox to display the result. Use:

#include <Array.au3>
$sUrl = InputBox ("Required Information", "Enter the URL", "", "", - 1, -1, 0, 0)
$oIE = _IECreate($sUrl)
$sHTML = _IEDocReadHTML($oIE)
$Results = _StringBetween($sHTML, '<status','/status>')
_ArrayDisplay($Results)

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

This will work if it's an actual html tag...please specify if this actually an embedded XML file of some sort:

#include <ie.au3>
$oIE = _IEAttach("your window")
$oStatusTags = _IETagNameGetCollection($oIE, "status")
If IsObj($oStatusTags) Then
    For $oStatus In $oStatusTags
        ConsoleWrite($oStatus.outerhtml & " " & $oStatus.innertext & @CRLF)
    Next
Else
    ConsoleWrite("Unable to find" & @CRLF)
EndIf
Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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