json - removing backslash in a string with JavascriptjQuery - Stack Overflow

When I query twitter feeds, the returned profile url contains backslashsand looks like:"http:

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 badges
Add a ment  | 

1 Answer 1

Reset to default 11

x = 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?

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743647089a4483941.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信