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

Javascript inoperant Switch Case with a regex - Stack Overflow

programmeradmin2浏览0评论

It looks like the javascript switch case doesn't like the regex as a case as it works with static values but I can't get the expected answers using regex in the case statement.

Would you pls confirm that limitation of the js interpretor and propose a work around (I mean not a if-then blocks suite) ?

Thx

example (not giving the expected answer ,eg 'case3') :

<script type="text/javascript">
var testme = "pwd_foo";
var response = false;
var reg = /^pwd.+/;

switch (testme) {
case 'pwd':
    response = 'case1';
    break;
case reg.test:
    response = 'case2';
    break;
case /^pwd.+/:
   response = 'case3';
   break;
default:
    response = 'do sthg else';
}

alert('reg test: ' + reg.test(testme)+'\nresponse:' + response);
</script>

It looks like the javascript switch case doesn't like the regex as a case as it works with static values but I can't get the expected answers using regex in the case statement.

Would you pls confirm that limitation of the js interpretor and propose a work around (I mean not a if-then blocks suite) ?

Thx

example (not giving the expected answer ,eg 'case3') :

<script type="text/javascript">
var testme = "pwd_foo";
var response = false;
var reg = /^pwd.+/;

switch (testme) {
case 'pwd':
    response = 'case1';
    break;
case reg.test:
    response = 'case2';
    break;
case /^pwd.+/:
   response = 'case3';
   break;
default:
    response = 'do sthg else';
}

alert('reg test: ' + reg.test(testme)+'\nresponse:' + response);
</script>
Share Improve this question asked Jul 5, 2011 at 7:39 hornetbzzhornetbzz 9,3655 gold badges40 silver badges58 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 9

Your tests do not really lend themselves to a switch. If you must, you can do this which is NOT RECOMMENDED:

DEMO HERE

var testme = "pwd_foo", response;
var reg = /^pwd.+/;

switch (true) {
case testme=='pwd':
    response = 'case1';
    break;
case reg.test(testme):
    response = 'case2';
    break;
default:
    response = 'do sthg else';
}

alert('reg test: ' + reg.test(testme)+'\nresponse:' + response);

You can also use a ternary for this (but do see the disclaimer here):

var testme = "pwd_foo", 
    response = 
       testme === 'pwd' 
         ? 'case1' 
         : /^pwd.+/.test(testme) 
           ? 'case2' 
           : 'do something else';
发布评论

评论列表(0)

  1. 暂无评论