Java String startsWith() 方法

实例

找出字符串是否以指定字符开头:

  1. public class Main {
  2. public static void main(String[] args) {
  3. String myStr = "Hello";
  4. System.out.println(myStr.startsWith("Hel"));
  5. System.out.println(myStr.startsWith("llo"));
  6. System.out.println(myStr.startsWith("o"));
  7. }
  8. }

定义与用法

startsWith() 方法检查字符串是否以指定的字符开头。

提示:使用 endsWith() 方法检查字符串是否以指定字符结尾。


语法


参数值

参数描述
chars一个字符串,表示要检查的字符

技术细节

返回:一个 boolean 值:
  • true - 如果字符串以指定的字符开头
  • false - 如果字符串不是以指定的字符开头

分类导航