正则表达式替换html标签中大写字母为小写字母

前端之家收集整理的这篇文章主要介绍了正则表达式替换html标签中大写字母为小写字母前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
/**
	 * 正则表达式对大写html标签进行转换成小写
	 * */
	public static String tagNameToLowerCase(String html){
		StringBuffer result = new StringBuffer();
		Pattern pattern = Pattern.compile("<([^>\\s]+)");
		Matcher m = pattern.matcher(html);
		while (m.find()) {
			m.appendReplacement(result,"<" + m.group(1).toLowerCase());
		}
		m.appendTail(result);
		return result.toString();
	}

猜你在找的正则表达式相关文章