admin管理员组文章数量:1341686
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
3 Answers
Reset to default 6Simply 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
本文标签: jqueryReplace the special character and space from the string in javascriptStack Overflow
版权声明:本文标题:jquery - Replace the special character and space from the string in javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743679358a2520859.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论