java 如何以字母为分界线拆分字符串,例如:123ae321拆分为123和ae321
第1个回答 2016-08-29
"123ae321".split("ae") 得到[“123”,“321”]的数组
split(String regex),是分割字符串的方法
追问那个ae也要
例如 123 ww235
3443 rh732 等等
追答那就用截取字符窜了 substring(int beginIndex,
int endIndex) ,返回的是截取的字符窜
例如
"123ae321".substring(4, 7) returns "e321"
"smiles".substring(1, 5) returns "mile"
本回答被网友采纳
Warning: Invalid argument supplied for foreach() in /www/wwwroot/aolonic.com/skin/templets/default/contents.html on line 45
相似回答