There is a snippet from a XML file like this:
"...<id>90,123</id>...<id>190</id>...<id>123,90</id>...
<id>123,90,123</id>...<id>901</id>"
I want to replace all the number 90 with another number, e.g. 100. Using replace/all
will ruin numbers like 190 and 901. rejoin replace/all parse str "<>," "91" "147"
will eliminate the <>,
. How can I do this?
If your input is:
Then try this:
Will output:
This helped me find a Red bug as well :)