匹配所有内容的正则表达式中的否定前瞻接受特定字符

问题描述 投票:1回答:2

我在使用Java中的负前瞻定义正则表达式时遇到问题。

给出以下字符串:

Today [#[#item#] was|the items were#] shipped so [#it is|they are#] gone.

我试图根据一些值将此字符串转换为以下形式之一(是的,这是一种区分单数和复数形式的方法):

Today [#item#] was shipped so it is gone.Today the items were shipped so they are gone

我试图在Java中使用正则表达式匹配此模式并实现此转换:

public String convert(String text, boolean isSingular) {
    Pattern spPattern = Pattern.compile("\\[#.*?\\|.*?#\\]");
    Matcher matcher = spPattern.matcher(text);
    while (matcher.find()) {
        int start = matcher.start()+2;
        int end = matcher.end()-2;
        int indexOfPipe = text.indexOf("|", start);
        String replacement = (isSingular) ? text.substring(start, indexOfPipe) : text.substring(indexOfPipe+1, end);
        text = matcher.replaceFirst(replacement);
        matcher = spPattern.matcher(text);
     }
}

对于单数形式:在while-loop text的第一次迭代之后是Today [#item#] was shipped so [#it is|they are#] gone.,这没关系。然而,在第二次迭代中,Matcher匹配组[#item#] was shipped so [#it is|they are#],而它应该是[#it is|they are#]。我很确定我需要某种负面的前瞻。

我已经尝试了以下模式但它似乎没有做任何事情:

(\\[#.*?\\|.*?#\\])(?!\\[#[^\\|]*?#\\])(“尝试匹配[#和#]之间的所有内容,接受那些不包含|在这些标签之间的情况”)

我错过了什么?

java regex negative-lookahead
2个回答
0
投票

简要

您遇到的问题是因为您的第一个替换是生成Today [#item#] was shipped so [#it is|they are#] gone.并且您的正则表达式匹配[#item#] was shipped so [#it is|they are#]。然后你的正则表达式错误地替换了这个字符串。

解决这个问题的真正方法是创建一个解析器,但是如果函数以递归方式运行正则表达式,则可以使用正则表达式(由于while循环,这种方式有点);所以这个答案也适用于像[#[#a|b#]|b#]这样的东西,但请注意,任何进一步的嵌套都会失败(如果它嵌套在奇异的一侧)。


See regex in use here

\[#((?:\[#.*?#]|(?!#])[^|])*?)\|((?:\[#.*?#]|(?!#])[^|])*?)#]

Usage

See code in use here

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

class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        String s = "Today [#[#item#] was|the items were#] shipped so [#it is|they are#] gone.";
        System.out.println(convert(s, true));
        System.out.println(convert(s, false));
    }

    public static String convert(String text, boolean isSingular) {
        Pattern spPattern = Pattern.compile("\\[#((?:\\[#.*?#]|(?!#])[^|])*?)\\|((?:\\[#.*?#]|(?!#])[^|])*?)#]");
        Matcher matcher = spPattern.matcher(text);
        while (matcher.find()) {
            String replacement = isSingular ? matcher.group(1) : matcher.group(2);
            text = matcher.replaceFirst(replacement);
            matcher = spPattern.matcher(text);
        }
        return text;
    }
}

说明

  • \[#字面上匹配[#
  • ((?:\[#.*?#]|(?!#])[^|])*?)将以下内容捕获到捕获组1中 (?:\[#.*?#]|(?!#])[^|])*?匹配任意次数,但尽可能少 \[#.*?#]符合以下条件 \[#字面上匹配[# .*?任何次数匹配任何字符,但尽可能少 #]按字面意思对比 (?!#])[^|]符合以下条件 (?!#])负向前瞻确保以下内容与#]字面上不匹配 [^|]匹配除|之外的任何东西
  • \|字面上匹配|
  • ((?:\[#.*?#]|(?!#])[^|])*?)将以下内容捕获到捕获组2中 请参阅捕获组1下的说明(这与捕获组1相同)
  • #]符合字面意思

0
投票

这是伪代码,显示了可以这样做的方法。 显然我不懂Java。

regex_main = "(?s)(.*?)((?=\\[\\#)(?:(?=.*?\\[\\#(?!.*?\\3)(.*\\#\\](?!.*\\4).*))(?=.*?\\#\\](?!.*?\\4)(.*)).)+?.*?(?=\\3)(?:(?!\\[\\#).)*)(?=\\4)|(.+)"

regex_brack_contents = "(?s)^\\[\\#(.*)\\#\\]$"

sTemplate = "Today [#[#item#] was|the items were#] shipped so [#it is|they are#] gone."
sOut[5] = ""
nPermutations = 0
Matcher _M = regex_main.matcher( sTemplate );

while ( _M.find() ) {
    if ( _M.group(1) ) {
        for (i = 0; i < 5; i++ ) 
            sOut[i] += _M.group(1)
        Matcher _m = regex_brack_contents.matcher( _M.group(2) )
        if ( _m.find() ) {
            aray = _m.group(1).split("|");
            for ( i = 0; i < sizeof(aray), i < 5; i++ )
                sOut[i] += aray[i]
            if ( i > nPermutations )
                nPermutations = i
        }
    }
    else { 
        for (i = 0; i < 5; i++ ) 
           sOut[i] += _M.group(5)
    }
    _M = regex_main.matcher( sTemplate );
}
for (i = 0; i < nPermutations; i++ ) 
    print( sOut[i] + "\r\n" )
© www.soinside.com 2019 - 2024. All rights reserved.