String 类可以用来表示字符串,Java程序中的所有字符串文字都是作为一个实例实现的一个字符串类。字符串是常量,它们的值一旦创建就无法更改(不可变)。
我们可以使用 startsWith( String 类的 ) 方法检查字符串是否以特定字符串开头,它返回一个布尔值, true 或 false。
语法
public boolean startsWith(String prefix)
登录后复制
示例
public class StringStartsWithSubStringTest {
public static void main(String[] args) {
String str = "WelcomeToTutorialsPoint";
if(str.startsWith("Welcome")) {
System.out.println("Begins with the specified word!");
}
else {
System.out.println("Does not begin with the specified word!");
}
}
}
登录后复制
输出
Begins with the specified word!
登录后复制
以上就是如何在Java中检查字符串是否以特定子字符串开头?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!