Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在另一个字符串中找到一个子字符串的位置IgnoreCase。 例子:
IgnoreCase
String str ="aabbssddaa", str2="ab"; str.indexOf(str2);
我想找到不区分大小写的 str2 的位置。表示 str2= 其中任何一个 "ab","Ab","aB","AB" 我只想遍历字符串一次。
最简单的方法是在两个字符串上都使用toLowerCase()or 。toUpperCase()
toLowerCase()
toUpperCase()