gpt4 book ai didi

java - 在 "11111"中查找 "111111111111111"的索引的正确正则表达式是什么?

转载 作者:行者123 更新时间:2023-12-01 06:27:35 25 4
gpt4 key购买 nike

import java.util.regex.Matcher; 
import java.util.regex.Pattern;
import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
// your code goes here
String in = "111111111111111";
Pattern p = Pattern.compile("(11111)");
Matcher m = p.matcher(in);
while (m.find()) {

System.out.print(m.start() + " ");

}

}
}

我得到的上述代码的输出是

0 5 10

我应该得到的输出是

0 1 2 3 4 5 6 7 8 9 10 

有人可以告诉我我做错了什么吗?

最佳答案

Can somebody tell me what I am doing wrong?

您假设您将从匹配中已使用的文本中获取匹配项。你不会的。

您可以使用前瞻性断言来做到这一点:

Pattern p = Pattern.compile("1(?=1111)");

(这意味着“查找四个 1 之前的 1”,而不是“查找五个 1”)

Ideone demo

但使用 indexOf 更容易做到这一点:

int prev = -1;
while ((prev = in.indexOf("11111", prev + 1)) != -1) {
System.out.println(prev + " ");
}

关于java - 在 "11111"中查找 "111111111111111"的索引的正确正则表达式是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56295203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com