String startsWith(String prefix, int toffset)
方法判断字符串是否以指定的前缀开始。
语法
以下是此方法的语法 -
public boolean startsWith(String prefix, int toffset)
参数
prefix
- 要匹配的前缀。toffset
- 从个索引位置开始匹配字符串。
返回值
- 如果参数字符序列是该字符串字符序列的前缀,则返回
true
; 否则返回false
。
示例
-- -------------------- ---- ------- ------ ----- ---- - ------ ------ ---- ----------- ------- - ------ --- - --- --------------- -- -------------- ------------------------ ----- ---- ---------------------------------------------- ------------------------ ----- ---- -------------------------------------------- ----- - -
执行上面示例代码,得到以下结果:
Return Value :true Return Value :true