joshiieeii Posted April 5, 2007 Posted April 5, 2007 Ok, so i have this XML file with a respectable number of lines in it. I want to search between the "<driver guid" and the "</driver>" and see if the "<source>" line has a "(?)" (?=number) in it. If it does, I want to delete everything from "<driver guid" to "</driver>" and continue to check the next set of "<driver guid" and "</driver>". I shortened the below code for sake of space, there are a random number of lines between "<driver guid" and "</driver>". Any ideas? <driver guid="{809f4069-0bbe-49cc-af58-4f75c296da74}" enable="True"> <Name>NVIDIA Display nvdm.inf 7.15.10.9746</Name> <Manufacturer>NVIDIA</Manufacturer> <Version>7.15.10.9746</Version> <Source>.\Out-of-box Drivers\Display\nvd 7.15.10.9746\nvdm.inf</Source> <Type>Display</Type> <Platform>x86</Platform> <OSVersion>6.0</OSVersion> <PNPId>PCI\VEN_10DE&DEV_00C8&SUBSYS_019C1028</PNPId> </driver> <driver guid="{a24db7b9-ec1b-45dc-8245-7b33da7d579a}" enable="True"> <Name>NVIDIA Display nvdm.inf 7.15.10.9746</Name> <Manufacturer>NVIDIA</Manufacturer> <Version>7.15.10.9746</Version> <Source>.\Out-of-box Drivers\Display\nvd 7.15.10.9746 (1)\nvdm.inf</Source> <Type>Display</Type> <Platform>x86</Platform> <OSVersion>6.0</OSVersion> <PNPId>PCI\VEN_10DE&DEV_00C8&SUBSYS_019C1028</PNPId> </driver> Projects:Vista Gui ImageX Deployment Tool - CompletedActive Directory Helper - CompletedGlobalized Outlook and OWA Signature Project - Completed
joshiieeii Posted April 5, 2007 Author Posted April 5, 2007 Darnit....was browsing Example Scripts when I had the bright idea to create a topic....Please move to Help Category. Projects:Vista Gui ImageX Deployment Tool - CompletedActive Directory Helper - CompletedGlobalized Outlook and OWA Signature Project - Completed
Uten Posted April 5, 2007 Posted April 5, 2007 Dive into The StringRegExpReplace function..Have Fun.. Please keep your sig. small! Use the help file. Search the forum. Then ask unresolved questions :) Script plugin demo, Simple Trace udf, TrayMenuEx udf, IOChatter demo, freebasic multithreaded dll sample, PostMessage, Aspell, Code profiling
joshiieeii Posted April 6, 2007 Author Posted April 6, 2007 Thanks Uten, That is an unexplored function for me......I am going to dive into that one!! Projects:Vista Gui ImageX Deployment Tool - CompletedActive Directory Helper - CompletedGlobalized Outlook and OWA Signature Project - Completed
jvanegmond Posted April 6, 2007 Posted April 6, 2007 (edited) Here's a start... This is too complicated for a human to do with StringRegExpReplace.. $Read = FileRead("Source.txt") $Line = StringSplit(StringStripCR($Read),@LF) For $x = 1 To $Line[0] $Line[$x] = StringStripWS($Line[$x],1) $Prefix = StringTrimRight(StringTrimLeft(StringLeft($Line[$x],StringInStr($Line[$x],">")),1),1) Switch $Prefix Case "Source" MsgBox(0, "Source is on line " & $x, $Line[$x]) If StringRegExp($Line[$x],"\([0-9]\)") Then MsgBox(0, "", "This part should be deleted, this is a StringRegExp match...") Else MsgBox(0, "", "This part should NOT be deleted.") EndIf EndSwitch Next The RegExp doesn't work yet though, my laptop batteries are dead.. Have to go and recharge.. Edited April 6, 2007 by Manadar github.com/jvanegmond
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