使用startsWith与endsWith需注意的点
程序员文章站
2023-12-21 15:49:22
...
使用startsWith与endsWith需注意的点
- 字符串不能颠倒
- 字符串需要判空
public class Test {
public static void main(String[] args) {
String a = "hello world";
String b = "world";
String c = "";
LogJava.e(a.endsWith(b) + ""); //正常使用 true
LogJava.e(a.endsWith(c) + ""); //c为空字符串 true
LogJava.e(a.startsWith(c) + "");//c为空字符串 true
}
}
推荐阅读
-
使用startsWith与endsWith需注意的点
-
Python中的startswith和endswith函数使用实例
-
C++ 使用new与delete需注意的原则
-
includes,startsWith,endsWith,find,findIndex 的应用与 indexOf
-
长期使用中型Access数据库的一点经验与缺点
-
长期使用中型Access数据库的一点经验与缺点
-
Python中的startswith和endswith函数使用实例
-
长期使用中型Access数据库的一点经验与缺点
-
Python中的startswith和endswith函数使用实例
-
详解Python中startswith()函数与endswith函数的使用方法