|
-
Oct 22nd, 2003, 05:23 AM
#1
Thread Starter
Addicted Member
Xml to plain text
any active x which can do that 
or anyother xml pharsing routine ?
-
Oct 22nd, 2003, 06:43 AM
#2
Frenzied Member
Have a look at www.componentsource.com There's bound to be something there.
'Buzby'
Visual Basic Developer
"I'm moving to Theory. Everything works there."
-
Oct 22nd, 2003, 06:54 AM
#3
Thread Starter
Addicted Member
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
-
Oct 22nd, 2003, 10:05 AM
#4
XML is plain text. If you want to get information from an XML file the best thing to use is MSXML4.
-
Oct 22nd, 2003, 04:26 PM
#5
You could use XSLT, but it probably is overkill.
A simple regular expression replacement on the XML file would do. Like this:
"<[^>]*>" -> ""
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Oct 22nd, 2003, 04:26 PM
#6
Oh, and then you'd have to convert character references.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|