按照这个问答,我得到的结果还是有点麻烦,
例如,
REGEXP '>[^<]*lau[[:>:]]'
将仅匹配“ lau ”,但不匹配正确的“ lauren ”。
REGEXP '>[^<]*men[[:>:]]'
将匹配'赋权'和'女性',这不是我所追求的。
REGEXP '( |>|$)home( |<|$)'
将只匹配 ' home ' 而不是 ' home! ' 它应该。
如何正确匹配这些?
例如,
Home - match
HOME - match
welcome home! - match
home is far! - match
hometown - not match
xxhomexx - not match
<a href="home.html">Hello</a> - not match
<p class="home">a box</p> - not match
它不应与html 标记中的任何出现匹配。家乡 - 不匹配