3

我有一个字符串,例如:

There exists a word *random*.

random将是一个随机词。
如何使用正则表达式替换randomwith的每个字符*并获得以下结果:

There exists a word ********.

所以*替换每个字符,在本例中为 6 个字符。
请注意,我只替换单词random,而不是环境*。到目前为止,我有:

str.replaceAll("(\\*)[^.]*(\\*)", "\\*");

但它替换*random**, 而不是所需的********(总共 8 个)。
任何帮助,非常感谢...

4

4 回答 4

5

如果你只有一个这样的词:-

就当前示例而言,如果您只有一个这样的单词,那么您可以通过使用一些String类方法来避免正则表达式:-

String str = "There exists a word *random*.";

int index1 = str.indexOf("*");
int index2 = str.indexOf("*", index1 + 1);

int length = index2 - index1 - 1;   // Get length of `random`

StringBuilder builder = new StringBuilder();

// Append part till start of "random"
builder.append(str.substring(0, index1 + 1));

// Append * of length "random".length()
for (int i = 0; i < length; i++) {
    builder.append("*");
}

// Append part after "random"
builder.append(str.substring(index2));

str = builder.toString();

如果你可以有多个这样的词:-

为此,这是一个正则表达式解决方案(这是它开始变得有点复杂的地方): -

String str = "There exists a word *random*.";
str = str.replaceAll("(?<! ).(?!([^*]*[*][^*]*[*])*[^*]*$)", "*");
System.out.println(str);

上面的模式string containing even numbers of **.

哪个适合你,你可以使用。

我将添加对上述正则表达式的解释: -

(?<! )       // Not preceded by a space - To avoid replacing first `*`
.            // Match any character
(?!          // Not Followed by (Following pattern matches any string containing even number of stars. Hence negative look-ahead
    [^*]*    // 0 or more Non-Star character
    [*]      // A single `star`
    [^*]*    // 0 or more Non-star character
    [*]      // A single `star`
)*           // 0 or more repetition of the previous pattern.
[^*]*$       // 0 or more non-star character till the end.     

现在上面的模式将只匹配那些单词,它们是inside a pair of stars. 前提是您没有任何不平衡stars的 .

于 2013-02-04T06:14:27.313 回答
2

您可以提取之间的单词*并对其执行替换所有字符*

import java.util.regex.*;

String txt = "There exists a word *random*.";
// extract the word
Matcher m = Pattern.compile("[*](.*?)[*]").matcher(txt);
if (m.find()) {
    // group(0): *random*
    // group(1): random
    System.out.println("->> " + m.group(0));
    txt = txt.replace(m.group(0), m.group(1).replaceAll(".", "*"));
}
System.out.println("-> " + txt);

你可以在ideone上看到:http: //ideone.com/VZ7uMT

于 2013-02-04T06:17:56.830 回答
0

尝试

    String s = "There exists a word *random*.";
    s = s.replaceAll("\\*.+\\*", s.replaceAll(".*(\\*.+\\*).*", "$1").replaceAll(".", "*"));
    System.out.println(s);

输出

There exists a word ********.
于 2013-02-04T06:30:22.367 回答
0
public static void main(String[] args) {
    String str = "There exists a word *random*.";
    Pattern p = Pattern.compile("(\\*)[^.]*(\\*)");

    java.util.regex.Matcher m = p.matcher(str);
    String s = "";
    if (m.find())
        s = m.group();

    int index = str.indexOf(s);
    String copy = str;
    str = str.substring(0, index);

    for (int i = index; i < index + s.length(); i++) {
        str = str + "*";
    }
    str = str + copy.substring(index + s.length(), copy.length());

    System.out.println(str);

}
于 2013-02-04T06:32:19.360 回答