我想检查以http://
开头的字符串。如果没有循环我怎么能这样做?提前谢谢。
答案 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。