我是正则表达式的新手,可以帮助我解决问题
例如我有一个字符串如下,
String str = "this is a hello world string and duplicate starts from here this is a hello world string";
我想使用正则表达式检查以下条件。
if("this is a hello world string" has appeared more than once in String str){
return false;
}
else{
return true;
}
如何做到这一点?