Good afternoon
I would like to ask for help to make a regex that separates the values of this string:
<table>|<tr>[<td>#VALOR#</td>]</tr>|</table>
I would need the regex to break the values as follows:
match 1: match 2: match 3: #VALUE #
I tried, tried and I can not. I was using something like this:
(<\s*?table\b[^>]*>).*(<\/table\b[^>]*>)
Thank you in advance
Thank you