私は正規表現が初めてで、解決策を手伝ってくれます
たとえば、次のような文字列があります。
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;
}
これはどのように達成できますか?