regex 我可以替换Java正则表达式中的组吗?

omjgkv6w  于 2023-02-17  发布在  Java
关注(0)|答案(6)|浏览(265)

我有这段代码,我想知道,如果我可以只替换组(不是所有模式)在Java正则表达式.代码:

//...
 Pattern p = Pattern.compile("(\\d).*(\\d)");
    String input = "6 example input 4";
    Matcher m = p.matcher(input);
    if (m.find()) {

        //Now I want replace group one ( (\\d) ) with number 
       //and group two (too (\\d) ) with 1, but I don't know how.

    }
368yc8dk

368yc8dk1#

使用$n(其中n是一个数字)来引用replaceFirst(...)中捕获的子序列,我假设您想用字符串 "number" 替换第一组,用第一组的值替换第二组。

Pattern p = Pattern.compile("(\\d)(.*)(\\d)");
String input = "6 example input 4";
Matcher m = p.matcher(input);
if (m.find()) {
    // replace first number with "number" and second number with the first
    // the added group ("(.*)" which is $2) captures unmodified text to include it in the result
    String output = m.replaceFirst("number$2$1"); // "number example input 6"
}

考虑(\D+)代替(.*)作为第二组。*是一个贪婪的匹配器,首先会消耗最后一位。然后,当匹配器意识到最后的(\d)没有要匹配的内容时,它将不得不回溯,然后才能匹配到最后一位。

    • 编辑**

多年以后,这个问题仍然得到了投票,评论和编辑(破坏了答案)表明这个问题的含义仍然存在混乱。我已经修复了它,并添加了急需的示例输出。
对替换的编辑(有些人认为不应该使用$2)实际上打破了答案。虽然继续的投票显示答案击中了关键点-使用replaceFirst(...)中的$n引用来重用捕获的值-编辑失去了这样一个事实,即未修改的文本也需要捕获,并在替换中使用,以便"* 仅分组(而不是所有模式)*"。
这个问题,也就是这个答案,与迭代无关,这是有意为之的MRE

gijlo24d

gijlo24d2#

您可以使用Matcher#start(group)Matcher#end(group)构建一个通用替换方法:

public static String replaceGroup(String regex, String source, int groupToReplace, String replacement) {
    return replaceGroup(regex, source, groupToReplace, 1, replacement);
}

public static String replaceGroup(String regex, String source, int groupToReplace, int groupOccurrence, String replacement) {
    Matcher m = Pattern.compile(regex).matcher(source);
    for (int i = 0; i < groupOccurrence; i++)
        if (!m.find()) return source; // pattern not met, may also throw an exception here
    return new StringBuilder(source).replace(m.start(groupToReplace), m.end(groupToReplace), replacement).toString();
}

public static void main(String[] args) {
    // replace with "%" what was matched by group 1 
    // input: aaa123ccc
    // output: %123ccc
    System.out.println(replaceGroup("([a-z]+)([0-9]+)([a-z]+)", "aaa123ccc", 1, "%"));

    // replace with "!!!" what was matched the 4th time by the group 2
    // input: a1b2c3d4e5
    // output: a1b2c3d!!!e5
    System.out.println(replaceGroup("([a-z])(\\d)", "a1b2c3d4e5", 2, 4, "!!!"));
}

检查**online demo here**。

vsmadaxz

vsmadaxz3#

很抱歉打了一匹死马,但奇怪的是,没有人指出这一点-“是的,你可以,但这是如何在真实的生活中使用捕捉组相反”。
如果您按照Regex的使用方式使用它,解决方案就像这样简单:

"6 example input 4".replaceAll("(?:\\d)(.*)(?:\\d)", "number$11");

或者正如shmosel在下面正确指出的那样,

"6 example input 4".replaceAll("\d(.*)\d", "number$11");

...因为在正则表达式中根本没有对小数进行分组的好理由。
我们通常不会在字符串中想要 discard 的部分使用 capturing group,而是在字符串中想要 keep 的部分使用它们。
如果你真的想要替换组,你可能需要一个模板引擎(例如moustache、ejs、StringTemplate......)。
顺便说一句,即使是正则表达式中的非捕获组也只是在正则表达式引擎需要它们来识别和跳过变量文本的情况下才存在。

(?:abc)*(capture me)(?:bcd)*

如果你的输入看起来像“abcabccapture mebcdbcd”或者“abccapture mebcd”或者仅仅是“capture me”,你就需要它们。
或者反过来说:如果文本总是相同的,并且您不捕获它,则根本没有理由使用组。

t9eec4r0

t9eec4r04#

替换输入的密码字段:

{"_csrf":["9d90c85f-ac73-4b15-ad08-ebaa3fa4a005"],"originPassword":["uaas"],"newPassword":["uaas"],"confirmPassword":["uaas"]}


  private static final Pattern PATTERN = Pattern.compile(".*?password.*?\":\\[\"(.*?)\"\\](,\"|}$)", Pattern.CASE_INSENSITIVE);

  private static String replacePassword(String input, String replacement) {
    Matcher m = PATTERN.matcher(input);
    StringBuffer sb = new StringBuffer();
    while (m.find()) {
      Matcher m2 = PATTERN.matcher(m.group(0));
      if (m2.find()) {
        StringBuilder stringBuilder = new StringBuilder(m2.group(0));
        String result = stringBuilder.replace(m2.start(1), m2.end(1), replacement).toString();
        m.appendReplacement(sb, result);
      }
    }
    m.appendTail(sb);
    return sb.toString();
  }

  @Test
  public void test1() {
    String input = "{\"_csrf\":[\"9d90c85f-ac73-4b15-ad08-ebaa3fa4a005\"],\"originPassword\":[\"123\"],\"newPassword\":[\"456\"],\"confirmPassword\":[\"456\"]}";
    String expected = "{\"_csrf\":[\"9d90c85f-ac73-4b15-ad08-ebaa3fa4a005\"],\"originPassword\":[\"**\"],\"newPassword\":[\"**\"],\"confirmPassword\":[\"**\"]}";
    Assert.assertEquals(expected, replacePassword(input, "**"));
  }
u3r8eeie

u3r8eeie5#

你可以使用matcher.start()和matcher.end()方法来获得组的位置,所以使用这些位置你可以很容易地替换任何文本。

2w2cym1i

2w2cym1i6#

这里有一个不同的解决方案,它也允许在多个匹配中替换单个组。它使用堆栈来反转执行顺序,因此字符串操作可以安全地执行。

private static void demo () {

    final String sourceString = "hello world!";

    final String regex = "(hello) (world)(!)";
    final Pattern pattern = Pattern.compile(regex);

    String result = replaceTextOfMatchGroup(sourceString, pattern, 2, world -> world.toUpperCase());
    System.out.println(result);  // output: hello WORLD!
}

public static String replaceTextOfMatchGroup(String sourceString, Pattern pattern, int groupToReplace, Function<String,String> replaceStrategy) {
    Stack<Integer> startPositions = new Stack<>();
    Stack<Integer> endPositions = new Stack<>();
    Matcher matcher = pattern.matcher(sourceString);

    while (matcher.find()) {
        startPositions.push(matcher.start(groupToReplace));
        endPositions.push(matcher.end(groupToReplace));
    }
    StringBuilder sb = new StringBuilder(sourceString);
    while (! startPositions.isEmpty()) {
        int start = startPositions.pop();
        int end = endPositions.pop();
        if (start >= 0 && end >= 0) {
            sb.replace(start, end, replaceStrategy.apply(sourceString.substring(start, end)));
        }
    }
    return sb.toString();       
}

相关问题