any active x which can do that :)
or anyother xml pharsing routine ?:)
Printable View
any active x which can do that :)
or anyother xml pharsing routine ?:)
Have a look at www.componentsource.com There's bound to be something there.
thanks ,
sorry i didn't gave you guys all the details,what happening is that i get a small file not too big 50 -60 lines and i need to extract one line from that and use it to do some operations on a real time db :)
XML is plain text. If you want to get information from an XML file the best thing to use is MSXML4.
You could use XSLT, but it probably is overkill.
A simple regular expression replacement on the XML file would do. Like this:
"<[^>]*>" -> ""
Oh, and then you'd have to convert character references.