2014-04-02 86 views

回答

9

使用public boolean startsWith(String prefix)String API

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

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

基本上可以用最簡單的方法...提供字符串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。

相關問題