正则表达式匹配HTML单双标签

前端之家收集整理的这篇文章主要介绍了正则表达式匹配HTML单双标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

//很好的正则表达式教程

地址抛上:http://deerchao.net/tutorials/regex/regex.htm

package com.huowolf;

import java.util.Scanner;

public class Demo8 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = null;

		while(true) {
			s=sc.nextLine();
			System.out.println(IsHTML(s));
		}
	}
	
	public static boolean IsHTML(String s) {
		String reg = "<(\\w+?>).+?</\\1||<[^>]+?(\\s\\w+?=.+?)*/>";
		return s.matches(reg);
	}
}

自己码的,如果不对请指出来。

原文链接:https://www.f2er.com/regex/360982.html

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