How to eliminate spaces in XSLT 1.0
Hi. I'm using XSLT 1.0.
I like to change "DEC 28 2008" to "DEC282008" by eliminating the spaces.
I tried using normalize-space() and translate(), but they didn't work for me.
For translate(), I did this (but didn't work):
translate(., ' ', '')
Is there way to do this?
Please don't answer saying that I need to use XSLT 2.0
|