StripLineBreak parameters in ANT
- by Richard
I'm using ant 1.6.2... I want to supply parameters to StripLineBreaks (essentially, I want to remove any \r in the text, but not \n.
So, I have tried
Using the above strips out all letter "r" (for example, "jar" becomes "ja")
I have tried "\r", "\\r", and "\\r"
I cannot upgrade ant to a later version.
Help is appreciated.