Classic ASP Read CSV information inside an XML file

magdaaortagaa

New Member
I have a script that reads an XML file using the DOM without problem. If I check the result, I get the CSV information contained in the node in question. However, I have a problem to read that information. I have a variable that contains it as a text/string, but I do not know how to split that text according to the new line in order to separate each CSV informations. As my search on the Web leads to a great lack of result, I allow me to ask this question to the community.Note : I already try stuffs like :\[code\]myCsv = Replace(myCsv,vbCrLf,"<br>")myCsv = Split(myCsv, "<br>")\[/code\]or like : \[code\]myCsv = Split(myCsv, vbCrLf)\[/code\].Thank you !Regards,Phil
 
Back
Top