jquery - 模式匹配

发布于 2024-11-03 09:21:28 字数 550 浏览 2 评论 0原文

我一直在尝试使用 jquery match() 函数,但我无法得到任何我尝试工作的内容...

基本上,我试图匹配括号之间的任何字符串:(

示例) (口袋妖怪) (su54gar99)

...等等。

尝试过这个(最新的尝试...不知道此时我已经经历了多少次...)

$('.acf').each(function() {
                var ac = $(this);
                ac.data('changed', false);
                ac.data('alias', 'ac-real-');
                ac.data('rx',  /\s*\(\s+\)\s*/i);
                ac.data('name', ac.attr('name'));
                ac.data('id', ac.attr('id'));
                ac.data('value', ac.val());
        });

I've been trying to use the jquery match() function, but I'm not able to get anything I try to work...

Basically, I'm trying to match any string between parentheses:

(sample)
(pokemon)
(su54gar99)

... etc.

Tried this (the latest attempt... not sure how many I've gone through at this point...)

$('.acf').each(function() {
                var ac = $(this);
                ac.data('changed', false);
                ac.data('alias', 'ac-real-');
                ac.data('rx',  /\s*\(\s+\)\s*/i);
                ac.data('name', ac.attr('name'));
                ac.data('id', ac.attr('id'));
                ac.data('value', ac.val());
        });

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

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

发布评论

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

评论(2

长亭外,古道边 2024-11-10 09:21:28

为什么使用 \s ?它匹配任何空白字符

使用如下正则表达式:

\(.+\)

Why are you using \s ? It matches any whitespace character

Use a regular expression like below:

\(.+\)
驱逐舰岛风号 2024-11-10 09:21:28

我建议你的错误是,“\s”仅代表空白字符,而不代表普通字符;)。

其次,为了查找 EACH 并且在 1 个结果后不停止,请添加“g”(表示全局)修饰符。

尝试这样的事情:

var text = "(sample) (pokemon) (su54gar99)";
var found = text.match(/\s*\(([a-z,0-9]*)\)/ig);
$.each(found, function(i, v) {
    alert(i+" = "+v);
});

至少适用于给定的示例;)。

提示:访问:http://www.w3schools.com/jsref/jsref_obj_regexp.asp
在我看来,学习正则表达式的最佳方面:P。

I suggest your fault is, that "\s" only stands for whitespace characters, but not for normal characters ;).

Second, for finding EACH and not stopping after 1 result, add the "g" (for global) modifier.

Try something like this:

var text = "(sample) (pokemon) (su54gar99)";
var found = text.match(/\s*\(([a-z,0-9]*)\)/ig);
$.each(found, function(i, v) {
    alert(i+" = "+v);
});

Works with at least the given example ;).

TIP: Visit: http://www.w3schools.com/jsref/jsref_obj_regexp.asp
Best side for learning RegEx, in my opinion :P.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文