如何在java中检查字符串是否以子字符串开头?

时间:2014-04-02 05:23:51

标签: java string substring

我想检查以http://开头的字符串。如果没有循环我怎么能这样做?提前谢谢。

2 个答案:

答案 0 :(得分:9)

String API

中使用public boolean startsWith(String prefix)

例如:boolean isStartsWith = YOUR_STRING.startsWith("http://");

String tst = "http://web.com";
System.out.print(tst.startsWith("http://")); //prints true

答案 1 :(得分:2)

你基本上可以使用最简单的方法......即String API提供的方法..

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

例如:

String str = new String("http://www.google.com");
str.startsWith("http://"); 

如果条件满足则返回true,否则返回false。