标签: java hex
我是 Java 的新手,我希望使用f.i在长字符串中找到一个特殊字符。 lastIndexOf或indexOf,只是为了了解存在。
lastIndexOf
indexOf
该字符为十六进制0x1A。如何在lastIndexOf或indexOf中使用字符组合?
0x1A
答案 0 :(得分:2)
您可以使用
text.indexOf('\u001A');
或
text.lastIndexOf((char) 0x1A);
答案 1 :(得分:0)
Check out this java doc
存在可以通过这些函数的返回值进行测试。
如果返回-1,则源字符串中不存在给定的字符串/ char。