I have below string
Dim strTemplate as string =
"<table>
<tr>
<td>Name</td>
<td>Address</td>
<td>City</td>
</tr>
<tr>
<td>[%Name%]</td>
<td>[%Address%]</td>
<td>[%City%]</td>
</tr>
</table>"
Dim strSplits = New List(Of String)(Regex.Split(strval, "REGEXRequired"))
Now i want to write regex with split above string and give only pattern string [%...%].
i.e. want [%Name%], [%Address%], [%City%] values in strSplits list.
any suggestion or help will be appreciated .