String字符串截取/分割

/**
	 * @param str 原始字符串
	 * @param splitStr 分割依据
	 * @param index 返回得到字符串数组的顺序
	 * @return newStr 返回的新字符串
	 * @author pang
	 * @date 2020年7月3日 下午2:06:54
	 * @description 根据特定分隔符splitStr分割原始字符串str,返回分割后得到的第index个字符串(从0开始)
	 *
	 */
	public static String subStringSpilt(String str,String splitStr,int index) {
		String newStr="";
		if (StringUtils.isNotEmpty(str)) {
			String[] tempArr=str.split(splitStr);
			newStr=tempArr[index];
		}		
		return newStr;
	}

你可能感兴趣的:(后端)