String字符串操作

String strStart = "<count>";

String strEnd = "</<count>";

//定位首尾标签在字符串中的位置:

int strStartIndex = str.indexOf(strStart);

int strEndIndex = str.indexOf(strEnd);

//截取首尾之间的字符串:

String result = str.substring(strStartIndex, strEndIndex).substring(strStart.length());

//拆分字符串(返回一个字符串数组):

String [] strChildren=str.split(strEnd);

(0)

相关推荐