Java支持按贪心量词拆分表达式



我编写了下面的表达式,在每个x单词(例如3)后面拆分一个字符串,后跟一个空格。我的问题是,我需要保留整个内容。但是我找不到在Java中使用look behind etc来实现这一点的方法。

有人有过这样的经历吗?

String text = "Hello my name is Tom and i love playing football";
String regex = "([a-zA-Z0-9öÖäÄüÜß]+\s){" + ngramm_length + "}";
System.out.println(regex);
String[] ngramms = text.split(regex);

结果是4个令牌,但只有最后一个仍然包含内容,我想得到:

1: Hello my name 2: is Tom and 3: i love playing 4: football

查看链接中的匹配信息框JAVA代码:

public static void main(String[] args) throws IOException {     
    int length = 3; //2
    String dynamic_length = "";
    for (int i = 1; i < length; i++) {       
        dynamic_length += i;
        if (i + 1 < length) {
            dynamic_length += ",";         
        }
    }
    final String regex = "([a-zA-Z0-9öÖäÄüÜß]+\s){" + length + "}|([a-zA-Z0-9öÖäÄüÜß]+\s){" + dynamic_length + "}";
    final String string = "Hello my name is Tom and i love playing footballnn";
    final Pattern pattern = Pattern.compile(regex);
    final Matcher matcher = pattern.matcher(string);
    int count = 0;
    while (matcher.find()) {
        ++count;
        System.out.println("match:" + count + " " + matcher.group(0));
    }

不是动态的,因为它只在长度为2和3的情况下工作。这是我的问题还是我错过了什么?

for x> 1,我可以使用:

final String regex = "([a-zA-Z0-9öÖäÄüÜß]+\s){" + length + "}|([a-zA-Z0-9öÖäÄüÜß]+\s){1," + (length - 1) + "}";

for x = 1,我可以使用:

final String regex = "([a-zA-Z0-9öÖäÄüÜß]+\s){" + length + "}|([a-zA-Z0-9öÖäÄüÜß]+\s){1}";

或者只是用空格分隔。

感谢Maverick_Mrt !!

你可以试试:

([a-zA-Z0-9öÖäÄüÜß]+s){3}|([a-zA-Z0-9öÖäÄüÜß]+s){1,2}

解释

查看链接中的匹配信息框JAVA代码:

public static void main(String[] args) {
    final String regex = "([a-zA-Z0-9öÖäÄüÜß]+\s){3}|([a-zA-Z0-9öÖäÄüÜß]+\s){1,2}";
    final String string = "Hello my name is Tom and i love playing footballnn";
    final Pattern pattern = Pattern.compile(regex);
    final Matcher matcher = pattern.matcher(string);
    int count = 0;
    while (matcher.find()) {
        ++count;
        System.out.println("match:" + count + " " + matcher.group(0));
    }

根据你的评论:

如果你想要n block每个match那么你就这样做,确保n>0

([a-zA-Z0-9öÖäÄüÜß]+s){n}|([a-zA-Z0-9öÖäÄüÜß]+s){1,n-1}

Sample output
    match:1 Hello my name 
    match:2 is Tom and 
    match:3 i love playing 
    match:4 football

相关内容

  • 没有找到相关文章

最新更新