我想知道适用于检查包含某些 HTML 标签的字符串的可能正则表达式,即 ,<b>
和<i>
/<a>
或它没有任何标签。使用 PHP preg_match。
例如:
"This a text only.." return true
"This is a <b>bold</b> text" return true
"this is <script>alert('hi')</script>" return false
"this is <a href="#">some</a>and <h1>header</h1>" return false