需要帮助理解 Javascript 的 .match 方法

发布于 2024-09-09 07:01:01 字数 238 浏览 5 评论 0原文

我知道 .match() 返回一个匹配数组,如果没有找到则返回 null。但是我该如何访问 .match 所使用的捕获组的值呢?

例如:

var val = whatever.match('(?:^|;) ?' + stuff + '=([^;]*)(?:;|$)');

假设正则表达式匹配多次,如何访问特定匹配中捕获组的值?

谢谢!!

I understand that .match() returns an array of the matches, or null if none are found. But how do I go about accessing the values of capturing groups used with .match?

For example:

var val = whatever.match('(?:^|;) ?' + stuff + '=([^;]*)(?:;|$)');

Assuming the regular expression matches more than once, how do I access the value of the capturing group in a particular match?

Thanks!!

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

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

发布评论

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

评论(1

你好,陌生人 2024-09-16 07:01:01

使用数组表示法:[0][1] 等。

var val = whatever.match('(?:^|;) ?' + stuff + '=([^;]*)(?:;|$)');
if(val != null) {
    var first = val[0];
    //...
}

Use array notation: [0], [1], etc.

var val = whatever.match('(?:^|;) ?' + stuff + '=([^;]*)(?:;|$)');
if(val != null) {
    var first = val[0];
    //...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文