特定の HTML タグ、つまりを含む文字列、<b>
またはタグを含まない文字列をチェックするのに適した正規表現を知りたいです。PHP preg_match を使用します。<i>
<a>
例えば:
"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