📌  相关文章
📜  如何在字符串中查找 dnroid 中的任何单词 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:08.105000             🧑  作者: Mango

代码示例1
String fullText = "Hello world , Wassup? , good moRNING";
String singleWord = "hello world";
boolean find;

 if (fullText.matches(singleWord)) {

    find = True;
}