使用部分值/正则表达式进行切换?

发布于 2024-10-31 04:06:57 字数 298 浏览 1 评论 0原文

假设我有这个开关:

switch(str){
  case "something": //a defined value
    // ...
  break;
  case /#[a-zA-Z]{1,}/ //Matches "#" followed by a letter
}

我几乎确定上述情况几乎是不可能的......但是实现类似目标的最佳方法是什么?也许只是简单的 if..else..if ?那会很无聊......

那么你将如何实现这一点呢?

So lets say I had this switch:

switch(str){
  case "something": //a defined value
    // ...
  break;
  case /#[a-zA-Z]{1,}/ //Matches "#" followed by a letter
}

I'm almost sure that the above is almost impossible...but what would be the best way to achieve something similar? Maybe just plain if..else..ifs? That'd be boring...

So how would you achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

別甾虛僞 2024-11-07 04:06:57

在开始切换之前,您可以获取各种模式的匹配,
并将案例设置为匹配的索引。

(其他条件即使不是更高效,也更容易阅读。)

//var str= 'something';
var str='#somethingelse';
var M=  /^(something)|(#[a-zA-Z]+)$/.exec(str);
if(M){
    switch(M[0]){
        case M[1]:
        // ...
        alert(M[1]);
        break;
        case M[2]:
        //...
        alert(M[2])
        break;
    }
}

You can get the matches for various patterns before you begin the switch,
and set the cases to the index of the match.

(Other conditionals would be easier to read, if not more efficient.)

//var str= 'something';
var str='#somethingelse';
var M=  /^(something)|(#[a-zA-Z]+)$/.exec(str);
if(M){
    switch(M[0]){
        case M[1]:
        // ...
        alert(M[1]);
        break;
        case M[2]:
        //...
        alert(M[2])
        break;
    }
}
野侃 2024-11-07 04:06:57

您可以使用单个正则表达式。它不一定不那么无聊,但它可以完成工作。

var result = /(something)|(#[a-zA-Z]{1,})/.exec(str);
if (!result) {
    // Handle error?
} else if (result[1]) {
    // something
} else if (result[2]) {
    // #[a-zA-Z]{1,} 
}

You can use a single regexp. It is not necessarily less boring but it gets the job done.

var result = /(something)|(#[a-zA-Z]{1,})/.exec(str);
if (!result) {
    // Handle error?
} else if (result[1]) {
    // something
} else if (result[2]) {
    // #[a-zA-Z]{1,} 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文