如何计算正则表达式捕获组的次数?

发布于 2024-12-08 23:47:03 字数 193 浏览 0 评论 0原文

我有正则表达式 ([A-Za-z]+)

我的示例文本是:

jerk jerk jerk jerk jerk jerk jerk jerk jerk jerk 

我试图找出示例中一个组被捕获的次数。我希望示例输入的答案为 10。

我将如何实现这个?

I have the regex ([A-Za-z]+)

My example text is:

jerk jerk jerk jerk jerk jerk jerk jerk jerk jerk 

I'm trying to find out how many times a group is captured in an example. I want the answer for the example input to be 10.

How would I go implementing this?

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

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

发布评论

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

评论(2

谷夏 2024-12-15 23:47:03

您必须在正则表达式中指定要匹配的内容。您拥有的内容将与任何字母字符匹配。干得好:

import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main {

    public static void main( String[] args ) throws IOException //throws exceptions
    {
        String str = "jerk jerk jerk jerk\njerk jerk jerk\njerk jerk\njerk";
        String regex = "jerk";
        Pattern p = Pattern.compile(regex);
        Matcher m = p.matcher(str);
        int count = 0;
        while(m.find())
            count++;
        System.out.println(count);
    }
}

You have to specify what you want to match in the regex. What you have will match any alphabetic character. Here you go:

import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main {

    public static void main( String[] args ) throws IOException //throws exceptions
    {
        String str = "jerk jerk jerk jerk\njerk jerk jerk\njerk jerk\njerk";
        String regex = "jerk";
        Pattern p = Pattern.compile(regex);
        Matcher m = p.matcher(str);
        int count = 0;
        while(m.find())
            count++;
        System.out.println(count);
    }
}
回忆那么伤 2024-12-15 23:47:03
int count = 0;
while (matcher.find())
    count++;
int count = 0;
while (matcher.find())
    count++;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文