Jump to content

Recommended Posts

Posted

I have a XML file that i need assistance in parsing. Below is a snipping from the XML File:

<Tasks>
  <Task>
    <BeginDate>2015/08/15  01:27:45,4375 (0)</BeginDate>
    <MangaName>Kono S o, Mi yo! 
(Kono S o, Mi yo! 1 --&gt; Kono S o, Mi yo! 155 -  Just the Two of Them [End])</MangaName>
    <Website>MangaHere</Website>
    <SaveTo>F:\Manga\Kono S o, Mi yo!</SaveTo>
    <Status>Completed</Status>
    <Percent>100</Percent>
    <State>Stopped</State>
    <Queue>0</Queue>
    <Chapters />
  </Task>
  <Task>
    <BeginDate>2015/08/15  01:28:49,9415 (0)</BeginDate>
    <MangaName>Tate no Yuusha no Nariagari 
(Tate no Yuusha no Nariagari 1 -  A Royal Summoning --&gt; Tate no Yuusha no Nariagari 16 -  The Third Wave of Calamity)</MangaName>
    <Website>MangaHere</Website>
    <SaveTo>F:\Manga\Tate no Yuusha no Nariagari</SaveTo>
    <Status>Completed</Status>
    <Percent>100</Percent>
    <State>Stopped</State>
    <Queue>0</Queue>
    <Chapters />
  </Task>
</Tasks>

I have tried a couple of different ways but i haven't had any luck so far. I have messed with XML parsing with Rainmeter and Crystal Reports but im having difficulty with Auto-it. I need to parse the nodes <MangaName> and <Website> to a 2D Array with the <MangaName> as the first column and <Website> is the second column. Attached is the full XML File. 

Tasks.xml

Posted

Try this UDF

 

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

  Reveal hidden contents

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Posted

Thanks @KingBob

As this UDF is still in BETA stage I answered here.

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

If tags are constants you could do some desastrous as this:

#include <Array.au3>
Local $sData=FileRead("Tasks.xml")

Local $aData=StringSplit($sData,"<MangaName>",1)

_ArrayDisplay($aData)
Local $aNewArray[$aData[0]-1][2]
For $i=2 to $aData[0]
    $aNewArray[$i-2][0]=StringMid($aData[$i],1,StringInStr($aData[$i],"</MangaName>")-1)
    $aNewArray[$i-2][1]=StringReplace(StringSplit(StringMid($aData[$i],StringInStr($aData[$i],"<Website>")+9),@CRLF,1)[1],"</Website>","")

Next
_ArrayDisplay($aNewArray)

Saludos

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
×
×
  • Create New...