XSL transformation - PIPE delimited to CSV
Hi All,
I am new to XSL transformations. I had gone through some tutorials and most of them talk about XSLT transformations applying on XML file.
My requirement here is transforming a .txt which has PIPE delimited values to same file with COMMA as the delimiter. i.e need to replace all PIPEs with COMMAs
For ex:
From -> 1|ABC|XYZ|123|GOOD
2|SDF|WEW|432|BAD
To -> 1,ABC,XYZ,123,GOOD
2,SDF,WEW,432,BAD
Thanks for your help in advance.
~Satish
|