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

javascript - if charAt equal to a list of characters - Stack Overflow

programmeradmin2浏览0评论

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

2 Answers 2

Reset to default 5

Define 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)) {
  // ...
}
发布评论

评论列表(0)

  1. 暂无评论