正则表达式似乎不起作用

时间:2016-02-15 15:43:46

标签: java regex

我遇到了正则表达式命令的问题:

text="blue:{allocatable,allocate,assign,"
String patternblue = ".*blue.*";
boolean isMatchblue = Pattern.matches(patternblue, text.toString());
System.out.println(isMatchblue);

给出" false",会发生什么?

PS:文本已使用StringBuilder()

构建

编辑:我查看了论坛中的其他帖子,但我不能使用。*?也不是

有什么输入?谢谢!

0 个答案:

没有答案