This is a simple one. I want to replace a sub-string with another sub-string on client-side using Javascript.
Original string is 'original READ ONLY'
I want to replace the 'READ ONLY' with 'READ WRITE'
Any quick answer please? Possibly with a javascript code snippet…
String.replace()is regexp-based; if you pass in a string as the first argument, the regexp made from it will not include the ‘g’ (global) flag. This option is essential if you want to replace all occurances of the search string (which is usually what you want).An alternative non-regexp idiom for simple global string replace is:
This is preferable where the
findstring may contain characters that have an unwanted special meaning in regexps.Anyhow, either method is fine for the example in the question.