admin管理员组文章数量:1350056
I want something like the following in Javascript
if str.charAt(index) (is in the set of) {".", ",", "#", "$", ";", ":"}
Yes, I know this must be simple, but I can't seem to get the syntax right. What I have now is
theChar = str.charAt(i);
if ((theChar === '.') || (theChar === ',') || (theChar === ... )) {
// do stuff
}
This works, but there must be a better way.
Edit: I did this, but not sure if it's GOOD or not:
var punc = {
".":true,
",":true,
";":true,
":":true
};
if (punc[str.charAt[index]) { ...
I want something like the following in Javascript
if str.charAt(index) (is in the set of) {".", ",", "#", "$", ";", ":"}
Yes, I know this must be simple, but I can't seem to get the syntax right. What I have now is
theChar = str.charAt(i);
if ((theChar === '.') || (theChar === ',') || (theChar === ... )) {
// do stuff
}
This works, but there must be a better way.
Edit: I did this, but not sure if it's GOOD or not:
var punc = {
".":true,
",":true,
";":true,
":":true
};
if (punc[str.charAt[index]) { ...
Share
Improve this question
edited Jan 27, 2014 at 15:14
lbutlr
asked Jan 27, 2014 at 14:57
lbutlrlbutlr
4347 silver badges20 bronze badges
0
2 Answers
Reset to default 5Define an array with those chars and simply search in the array. One way to do that is the following:
var charsToSearch = [".", ",", "#", "$", ";", ":"];
var theChar = str.charAt(i); /* Wherever str and i es from */
if (charsToSearch.indexOf(theChar) != -1) {
/* Code here, the char has been found. */
}
You can do it with a regular expression:
var theChar = str.charAt(i);
if (/[.,#$;:]/.test(theChar)) {
// ...
}
本文标签: javascriptif charAt equal to a list of charactersStack Overflow
版权声明:本文标题:javascript - if charAt equal to a list of characters - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743870972a2553463.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论