前提・実現したいこと
KotlinもしくはJavaで、文字列の一部にリストの要素が含まれているか
の判断をしたいのですが書き方が分かりません。
ご教示お願いいたします。
(例)
sentence = "This is a pen."
list = ("pen","book","car","apple","egg")
→sentence の中に list の"pen"が含まれていいるので"true"
pythonで書いた場合は以下の通りです。
Python
1if = any(word in sentens for word in list):
試したこと
if(Regex(list.forEach{it}).containsMatchIn(sentence){
}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/08 03:39
2021/12/08 06:10
2021/12/09 06:01