String.prototype.replace supports replacement patterns (#tilPost)

Today I came across a blog post (it’s in German though) written by Peter Kröner and learned something very astonishing.
The article describes the not so well known behaviors of the method String.prototype.replace. Using this method …


This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis

Today I came across a blog post (it's in German though) written by Peter Kröner and learned something very astonishing.

The article describes the not so well known behaviors of the method String.prototype.replace. Using this method is usually very straight forward. It supports regular expressions if you need to, but for most cases, it's defining a matching string and a replacing string.

That's at least what I thought... ?

It turns out that if the second argument is a string (it can also be a function) and includes specific character sequences like $& or $' "replacer magic" appears.

const msg = 'This is a great message';

msg.replace('great', 'wonderful'); 
// "This is a wonderful message"
//
// -> 'great' is replaced by 'wonderful'

msg.replace('great', '$&-$&');
// "This is a great-great message"
// '$&' represents the matched substring
//
// -> 'great' is replaced by 'great-great'

msg.replace('great', '$`');
// "This is a This is a  message"
// '$`' represents the string before the matched string
//
// -> 'great' is replaced by 'This is a '

msg.replace('great', `$'`)
// "This is a  message message"
// `$'` represents the string after the matched string
//
// -> 'great' is replaced by ' message'

Oh my..., this behavior can lead to very hard to spot bugs!

If you want to read more about it, have a look at the replace docs on MDN or this overview on replacement values.


Reply to Stefan


This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis


Print Share Comment Cite Upload Translate Updates
APA

Stefan Judis | Sciencx (2019-07-30T22:00:00+00:00) String.prototype.replace supports replacement patterns (#tilPost). Retrieved from https://www.scien.cx/2019/07/30/string-prototype-replace-supports-replacement-patterns-tilpost/

MLA
" » String.prototype.replace supports replacement patterns (#tilPost)." Stefan Judis | Sciencx - Tuesday July 30, 2019, https://www.scien.cx/2019/07/30/string-prototype-replace-supports-replacement-patterns-tilpost/
HARVARD
Stefan Judis | Sciencx Tuesday July 30, 2019 » String.prototype.replace supports replacement patterns (#tilPost)., viewed ,<https://www.scien.cx/2019/07/30/string-prototype-replace-supports-replacement-patterns-tilpost/>
VANCOUVER
Stefan Judis | Sciencx - » String.prototype.replace supports replacement patterns (#tilPost). [Internet]. [Accessed ]. Available from: https://www.scien.cx/2019/07/30/string-prototype-replace-supports-replacement-patterns-tilpost/
CHICAGO
" » String.prototype.replace supports replacement patterns (#tilPost)." Stefan Judis | Sciencx - Accessed . https://www.scien.cx/2019/07/30/string-prototype-replace-supports-replacement-patterns-tilpost/
IEEE
" » String.prototype.replace supports replacement patterns (#tilPost)." Stefan Judis | Sciencx [Online]. Available: https://www.scien.cx/2019/07/30/string-prototype-replace-supports-replacement-patterns-tilpost/. [Accessed: ]
rf:citation
» String.prototype.replace supports replacement patterns (#tilPost) | Stefan Judis | Sciencx | https://www.scien.cx/2019/07/30/string-prototype-replace-supports-replacement-patterns-tilpost/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.