正则表达式匹配HTML单双标签 - html/css语言栏目:

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

地址抛上: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+?>).+?
 ]+?(\\s\\w+?=.+?)*/>";
		return s.matches(reg);
	}
}

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

返回顶部
跳到底部

Copyright 2011-2024 南京追名网络科技有限公司 苏ICP备2023031119号-6 乌徒帮 All Rights Reserved Powered by Z-BlogPHP Theme By open开发

请先 登录 再评论,若不是会员请先 注册