JavaScript Replace - u0009 .... with .replace(/\u0009/g,'');

Posted by nobosh on Stack Overflow See other posts from Stack Overflow or by nobosh
Published on 2010-06-06T04:40:28Z Indexed on 2010/06/06 4:42 UTC
Read the original article Hit count: 147

Filed under:
|

I'd like to use Javascript to replace all instances of \u009 in a string

This doesn't seem to be working: .replace(/\u0009/g,'');

Do I need to escape something?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about regex