admin管理员组文章数量:1340710
When I query twitter feeds, the returned profile url contains backslashs and looks like:
"http:\/\/a0.twimg\/profile_images\/2419298032\/image_normal.jpg"
how to remove the backslashes to make it look like:
".jpg"
Thanks a lot!
P.S. seems
x=x.replace(/\/gi, "");
doesn't work...
When I query twitter feeds, the returned profile url contains backslashs and looks like:
"http:\/\/a0.twimg.\/profile_images\/2419298032\/image_normal.jpg"
how to remove the backslashes to make it look like:
"http://a0.twimg./profile_images/2419298032/image_normal.jpg"
Thanks a lot!
P.S. seems
x=x.replace(/\/gi, "");
doesn't work...
Share Improve this question asked Jul 29, 2012 at 19:25 xiaolongxiaolong 3,6575 gold badges34 silver badges49 bronze badges1 Answer
Reset to default 11x = x.replace(/\\/g, '');
You have to use two backslashes to get the \ character. A single backslash is used for control characters such as \r \n etc. Using the double backslash escapes this and gives you what you want.
See also: how can remove backslash in value by jQuery?
本文标签: jsonremoving backslash in a string with JavascriptjQueryStack Overflow
版权声明:本文标题:json - removing backslash in a string with JavascriptjQuery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743647088a2515693.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论