判断字符串是否以指定的前缀开始(以什么开头)

判断前缀:

public boolean startsWith(String prefix, int toffset)public boolean startsWith(String prefix)

其中:

  • prefix – 前缀。
  • toffset – 字符串中开始查找的位置。

返回值为true 或 false。

例:

String startCode = "北京欢迎您";
System.out.println(startCode.startsWith("北京"));
System.out.println(startCode.startsWith("欢迎"));
System.out.println(startCode.startsWith("欢迎",2));

输出结果:

true
false
true

你可能感兴趣的:(Java,#,工具类)