/** * 截取字符串str中指定字符 strStart、strEnd之间的字符串 */ public static String subString(String str, String strStart, String strEnd) { /* 找出指定的2个字符在 该字符串里面的 位置 */ int strStartIndex = str.indexOf(strStart); int strEndIndex = str.indexOf(strEnd); /* index 为负数 即表示该字符串中 没有该字符 */ if (strStartIndex < 0) { return "字符串 :---->" + str + "<---- 中不存在 " + strStart + ", 无法截取目标字符串"; } if (strEndIndex < 0) { return "字符串 :---->" + str + "<---- 中不存在 " + strEnd + ", 无法截取目标字符串"; } /* 开始截取 */ String result = str.substring(strStartIndex, strEndIndex).substring(strStart.length()); return result; }
截取字符串str中指定字符
最新推荐文章于 2024-10-09 20:11:00 发布