JavaScript non-regex Replace - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T11:41:14Zhttp://stackoverflow.com/feeds/question/288368http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/288368/javascript-non-regex-replace0JavaScript non-regex ReplaceB. Tyndall2008-11-13T21:22:21Z2008-11-14T04:18:47Z
<p>Do any of the existing JavaScript frameworks have a non-regex replace() function?
or has this already been posted on the web somewhere as a one-off function?</p>
<p>For example I want to replace @!#$123=% and I don't want to worry about which characters to escape. Most languages seem to have both methods of doing "replaces". I would like to see this simple thing added.</p>
http://stackoverflow.com/questions/288368/javascript-non-regex-replace/288384#2883847Answer by Owen for JavaScript non-regex ReplaceOwen2008-11-13T21:25:34Z2008-11-14T04:18:47Z<p>i may be misunderstanding your question, but javascript does have a <a href="http://www.w3schools.com/jsref/jsref_replace.asp" rel="nofollow"><code>replace()</code></a></p>
<pre><code>var string = '@!#$123=%';
var newstring = string.replace('@!#$123=%', 'hi');
</code></pre>
<p><strong>edit</strong>: (see comments) the 5th edition does seem to have this info in it, although it doesn't show up when i <a href="http://safari.informit.com/0596101996/jscript5-CHP-11-SECT-2" rel="nofollow">link directly</a> to it. here's the relevant part:</p>
<blockquote>
<p>The replace( ) method performs a search-and-replace operation. It takes a regular expression as its first argument and a replacement string as its second argument. It searches the string on which it is called for matches with the specified pattern. If the regular expression has the g flag set, the replace( ) method replaces all matches in the string with the replacement string; otherwise, it replaces only the first match it finds. If the first argument to replace( ) is a string rather than a regular expression, the method searches for that string literally rather than converting it to a regular expression with the RegExp( ) constructor, as search( ) does. </p>
</blockquote>