0

我尝试匹配给定字符串中的模式,该模式将是静态的,以下是我的程序:

package com.test.poc;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexTestPatternMatcher {
  public static final String EXAMPLE_TEST = "http://localhost:8080/api/upload/form/{uploadType}/{uploadName}";

  public static void main(String[] args) {
    Pattern pattern = Pattern.compile("{\\w+}");
    // In case you would like to ignore case sensitivity you could use this
    // statement
    // Pattern pattern = Pattern.compile("\\s+", Pattern.CASE_INSENSITIVE);
    Matcher matcher = pattern.matcher(EXAMPLE_TEST);
    // Check all occurance
    while (matcher.find()) {
      System.out.print("Start index: " + matcher.start());
      System.out.print(" End index: " + matcher.end() + " ");
      System.out.println(matcher.group());
    }
    // Now create a new pattern and matcher to replace whitespace with tabs
    Pattern replace = Pattern.compile("\\s+");
    Matcher matcher2 = replace.matcher(EXAMPLE_TEST);
    System.out.println(matcher2.replaceAll("\t"));
  }
} 

我尝试匹配可用的字符串{}并用一些值替换它们。

但它给了我这个例外:

Exception in thread "main" java.util.regex.PatternSyntaxException: Illegal repetition
{\w+}
    at java.util.regex.Pattern.error(Pattern.java:1713)
    at java.util.regex.Pattern.closure(Pattern.java:2775)
    at java.util.regex.Pattern.sequence(Pattern.java:1889)
    at java.util.regex.Pattern.expr(Pattern.java:1752)
    at java.util.regex.Pattern.compile(Pattern.java:1460)
    at java.util.regex.Pattern.<init>(Pattern.java:1133)
    at java.util.regex.Pattern.compile(Pattern.java:823)
    at com.test.poc.RegexTestPatternMatcher.main(RegexTestPatternMatcher.java:9)

我在这里遇到什么问题。很抱歉在这里问这个

4

2 回答 2

5

{}是保留字符。您将需要逃避那些: \\{\\}

作为参考,这些字符用于重复。

http://www.regular-expressions.info/repeat.html

编辑

我不相信您可以使用这种匹配方式进行简单的替换。您可以做的是构建一个新字符串,依次查找每个匹配项:

public static void main( String[] args ) {
    String toConvert = EXAMPLE_TEST;

    Pattern pattern = Pattern.compile("\\{\\w+\\}");
    // In case you would like to ignore case sensitivity you could use this
    // statement
    // Pattern pattern = Pattern.compile("\\s+", Pattern.CASE_INSENSITIVE);
    Matcher matcher = pattern.matcher(toConvert);
    StringBuilder resultStringBuilder = new StringBuilder();
    int startPos = 0;
    while (matcher.find()) {

        // append everything up to this match.
        resultStringBuilder.append(toConvert.substring(startPos, matcher.start()));

        // append the replacement
        resultStringBuilder.append(lookup(matcher.group()));

        // set the start pos for the next match
        startPos = matcher.end();
    }
    // append everything that's left.
    resultStringBuilder.append(toConvert.substring(startPos, toConvert.length()));        


    String resultStrig = resultStringBuilder.toString();
    System.out.println(resultStrig);
}


private static String lookup( String s ) {
    // decide what you want to replace this string with
    // You might want to make use of a TreeMap<String,String> here.
    return "";
}
于 2013-05-02T12:28:46.920 回答
0

尝试这个 :

Pattern pattern = Pattern.compile("\\{\\w+\\}");
于 2013-05-02T12:27:22.267 回答