0

I have a requirement to replace every occurrence of LEN() to length() using ant script in a file. Below is the code I am using.

<replaceregexp file="G:/config.txt" match="LEN(\\*)" replace="length(*)" flags="g,i"/>

It is replacing to length(*)(*). Looks like it is only considering LEN. Can anyone provide me the solution?

0 Answers0