Pattern p = Pattern.compile("(?<=<(\\w+)>)");
Matcher m = p.matcher(textStr);
怎么提示我(?<=<(\\w+)>[color=#FF0000][/color])
红色的部分出错
Exception in thread "main" java.util.regex.PatternSyntaxException: Look-behind group does not have an obvious maximum length near index 10
(?<=<(\w+)>)
解决方法:
lookbehind 其中所指定的字符必须是指定数量的,不能用 * + 之类的,但可以用 {0, 100} 这种确定型的。
lookahead 没有这种限制。