最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - Replace the special character and space from the string in javascript - Stack Overflow

programmeradmin2浏览0评论

I have a below string. I need to remove all the special character and space.

var Uid = "s/Information Needed1-s84102-p306";

I tried the below code.It didn't replace the space from the string.

console.log(Uid.replace(/[^\w\s]/gi, '')}")

The output is:- sInformation Needed1s84102p306

I want the output as sInformationNeeded1s84102p306

I have a below string. I need to remove all the special character and space.

var Uid = "s/Information Needed1-s84102-p306";

I tried the below code.It didn't replace the space from the string.

console.log(Uid.replace(/[^\w\s]/gi, '')}")

The output is:- sInformation Needed1s84102p306

I want the output as sInformationNeeded1s84102p306

Share asked Sep 11, 2015 at 9:57 user3311567user3311567 612 gold badges2 silver badges8 bronze badges 1
  • Please clarify if _ should be removed or not. – Wiktor Stribiżew Commented Sep 11, 2015 at 10:33
Add a ment  | 

3 Answers 3

Reset to default 6

Simply try using

/[\W_]/g
  • \W match any non-word character [^a-zA-Z0-9_]

Included _ if you also want to remove it then

Regex

You can just use:

console.log(Uid.replace(/\W+/g, '')}")

\W will match any non-word character including a space.

RegEx Demo

You can use this expression for your case

var x = "s/Information Needed1-s84102-p306";
console(x.replace(/[^A-Z0-9]/ig, ""));

Here is the working Link

发布评论

评论列表(0)

  1. 暂无评论