程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 正則表達式---------匹配HTML標簽或標記,正則表達式---------

正則表達式---------匹配HTML標簽或標記,正則表達式---------

編輯:JAVA綜合教程

正則表達式---------匹配HTML標簽或標記,正則表達式---------


正則表達式匹配HTML標簽或標記

 

 

正則表達式    
<(\S*?) [^>]*>.*?</\1>|<.*? />
匹配    <html>hello</html>|<a>abcd</a>
不匹配    abc|123|<html>ddd
正則表達式    
^[^<>`~!/@\#}$%:;)(_^{&*=|'+]+$
匹配    This is a test
不匹配    <href = | <br> | That's it
正則表達式    
&lt;!--.*?--&gt;
匹配    &lt;!-- &lt;h1&gt;this text has been removed&lt;/h1&gt; --&gt; | &lt;!-- yada --&gt;
不匹配    &lt;h1&gt;this text has not been removed&lt;/h1&gt;
正則表達式    
(\[(\w+)\s*(([\w]*)=('|&quot;)?([a-zA-Z0-9|:|\/|=|-|.|\?|&amp;]*)(\5)?)*\])([a-zA-Z0-9|:|\/|=|-|.|\?|&amp;|\s]+)(\[\/\2\])
匹配    [link url=&quot;http://www.domain.com/file.extension?getvar=value&amp;secondvar=value&quot;]Link[/li
不匹配    [a]whatever[/b] | [a var1=something var2=somethingelse]whatever[/a] | [a]whatever[a]
正則表達式    
href=[\"\'](http:\/\/|\.\/|\/)?\w+(\.\w+)*(\/\w+(\.\w+)?)*(\/|\?\w*=\w*(&\w*=\w*)*)?[\"\']
匹配    href="www.yahoo.com" | href="http://localhost/blah/" | href="eek"
不匹配    href="" | href=eek | href="bad example"
正則表達式    
&quot;([^&quot;](?:\\.|[^\\&quot;]*)*)&quot;
匹配    &quot;This is a \&quot;string\&quot;.&quot;
不匹配    &quot;This is a \&quot;string\&quot;.
正則表達式    
(?i:on(blur|c(hange|lick)|dblclick|focus|keypress|(key|mouse)(down|up)|(un)?load|mouse(move|o(ut|ver))|reset|s(elect|ubmit)))
匹配    
     
onclick | onsubmit | onmouseover
不匹配    click | onandon | mickeymouse
正則表達式    
(?s)/\*.*\*/
匹配    /* .................... */ | /* imagine lots of lines here */
不匹配    */ malformed opening tag */ | /* malformed closing tag /*
正則表達式    
<(\S*?) [^>]*>.*?</\1>|<.*? />
匹配    <html>hello</html>|<a>abcd</a>
不匹配    abc|123|<html>ddd
正則表達式    
\xA9
匹配    ©
不匹配    anything
正則表達式    
src[^&gt;]*[^/].(?:jpg|bmp|gif)(?:\&quot;|\')
匹配    src=&quot;../images/image.jpg&quot; | src=&quot;http://domain.com/images/image.jpg&quot; | src='d:\w
不匹配    src=&quot;../images/image.tif&quot; | src=&quot;cid:value&quot;
正則表達式    
/\*[\d\D]*?\*/
匹配    /* my comment */ | /* my multiline comment */ | /* my nested comment */
不匹配    */ anything here /* | anything between 2 seperate comments | \* *\
正則表達式    
<[a-zA-Z]+(\s+[a-zA-Z]+\s*=\s*("([^"]*)"|'([^']*)'))*\s*/>
匹配    <img src="test.gif"/>
不匹配    <img src="test.gif"> | <img src="test.gif"a/>

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved