我尝试匹配给定字符串中的模式,这将是静态的,以下是我的程序:
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"));
}
}
Run Code Online (Sandbox Code Playgroud)
我尝试匹配可用的字符串{}
并用一些值替换它们.
但它给了我这个例外:
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)
Run Code Online (Sandbox Code Playgroud)
我在这里可能会遇到什么问题.我很抱歉在这里问这个问题
{
并且}
是保留字符.你将需要逃脱那些:
\\{
和\\}
作为参考,这些字符用于重复.
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 "";
}
Run Code Online (Sandbox Code Playgroud)