我有一些输入数据,例如
'和里面'里面有'hello'的一些字符串
如何编写正则表达式以便返回引用的文本(无论重复多少次)(所有出现)。
我有一个返回单引号的代码,但我想让它返回多次出现:
String mydata = "some string with 'hello' inside 'and inside'";
Pattern pattern = Pattern.compile("'(.*?)+'");
Matcher matcher = pattern.matcher(mydata);
while (matcher.find())
{
System.out.println(matcher.group());
}