Erm, one thing lol, perhaps this deserves a new thread but I'll ask here first.
How do I replace
all instances of a string with another string?
I want to replace every "$$" with a single "$" in the Message, so I tried this:
jscript code:
var texCode = Message.replace("$$", "$");
The result is that only the first "$$" is replaced... The next occurences are not touched.