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.
我是Java新手,我想在长字符串中找到一个特殊字符,使用 filastIndexOf或indexOf,只是为了了解它的存在。
lastIndexOf
indexOf
字符是十六进制0x1A。如何在lastIndexOfor中使用十六进制indexOf?
0x1A
你可以使用
text.indexOf('\u001A');
或者
text.lastIndexOf((char) 0x1A);
看看这个 java 文档
可以通过这些函数的返回值来检验是否存在。
如果返回 -1,则源字符串中不存在给定的字符串 /char。