Javascript: How to escape Unicode Chars
Posted
by user293006
on Stack Overflow
See other posts from Stack Overflow
or by user293006
Published on 2010-03-13T15:52:29Z
Indexed on
2010/03/13
15:55 UTC
Read the original article
Hit count: 153
JSON String:
{
"id":31896,
"name":"Zickey attitude - McKinley,
La Rosi\u00e8re,
21 ao\u00fbt 2006",
...
}
this causes an unterminated string in javascript.
my focus on solution is:
data.replace(/(\S)\1(\1)+/g, '');
or
data.replace(/\u([0-9A-Z])/, '');
any ideas/solution?
last node is the problem, fyi.
(/\u([0-9A-Z])/, '\1');
© Stack Overflow or respective owner