我正在尝试编写一个正则表达式来查看字符串是否包含任何典型的表标签:
<table></table>
<td></td>
<th></th>
<tr></tr>
<thead></thead>
<tfoot></tfoot>
<tbody></tbody>
以及可能包含其他属性的标签,例如:
<table border="1">
到目前为止,我已经想出了这个,但是,它匹配<br />
标签,我不知道为什么:
/<\/?[table|td|th|tr|tfoot|thead|tbody]{1,}>?/