次のような入力データがあります
「and inside」の中に「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());
}