标签: regex
我需要找到beetwen元素和另外两个元素。
ff<table>hello</table> <table>hello</table>ff
如果我这样做:
<table(.*)<\/table>
结果是这样的(一个字符串):
<table>hello</table> <table>hello</table>
我需要将其拆分:
https://regex101.com/r/2SjGhc/1