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.
私はJavalastIndexOfが初めてで、 fiまたはを使用して、長い文字列で単一の特殊文字を見つけて、indexOfその存在を知りたいと思っています。
lastIndexOf
indexOf
文字は hex0x1Aです。またはで 16 進数を使用するにはどうすればよいですlastIndexOfかindexOf?
0x1A
どちらでも使用できます
text.indexOf('\u001A');
また
text.lastIndexOf((char) 0x1A);
このJavaドキュメントをチェックしてください
これらの関数の戻り値によって存在をテストできます。
-1 を返す場合、指定された文字列 /char はソース文字列に存在しません。