admin管理员组文章数量:1344186
What's the regex values for to match a string against all special characters and letters except a ma.
value = "23,$%aA";
I want to do a match if the value has any pf the special characters and letters like the above string then it will return true but if it just has a value like
value = "23,3456.00"
then it will return false. As all the special characters and letters are no longer part of the string.
Can I do this using match and regex.
What's the regex values for to match a string against all special characters and letters except a ma.
value = "23,$%aA";
I want to do a match if the value has any pf the special characters and letters like the above string then it will return true but if it just has a value like
value = "23,3456.00"
then it will return false. As all the special characters and letters are no longer part of the string.
Can I do this using match and regex.
Share Improve this question edited May 2, 2013 at 0:37 nhahtdh 56.8k15 gold badges129 silver badges164 bronze badges asked May 1, 2013 at 21:18 ChapsterjChapsterj 6,63521 gold badges73 silver badges124 bronze badges 3- 1 For your example of returning false, you have three "types" of characters: digits, a ma, and a period. Are those how you define "letters"? – nickb Commented May 1, 2013 at 21:21
- Have seen?: What regex will match every character except ma or semi-colon – Luigi Siri Commented May 1, 2013 at 21:23
- He wants to keep numbers too though – Ding Commented May 1, 2013 at 21:24
2 Answers
Reset to default 8This will match everything that is not numeric or not a ma or period (decimal point)
var result = str.replace(/[^0-9\.,]/g, "");
var check = yourString.match(/[^0-9,\.]/);
Here check will be 'null' if the string does not contain a character different to a number, a ma or a point. If the string has any of these characters, check will be an Array. You could test this in this way
if (check === null ) { console.log('No special characters present') };
if (typeof check === 'Array' ) { console.log('Special characters present') };
本文标签: javascripthow to match all special characters except a commaStack Overflow
版权声明:本文标题:javascript - how to match all special characters except a comma - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743694751a2523313.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论