Here's the search that I performed:
<table(.*\p)*<\/table>
And I replaced it with some multiline code (essentially a different table)
Note that the opening tag (<table....) is not by itself on a line, though it DOES start the line - not sure if it has any significance.
Also note that the last </table> DOES start the line. This is definitely significant. If it didn't you would need to modify the regexp slightly:
<table(.*\p)*.*<\/table>
should do the trick to eat up anything on the line before the ending tag is reached.
Hope this helps.
Tom
<table(.*\p)*<\/table>
And I replaced it with some multiline code (essentially a different table)
Note that the opening tag (<table....) is not by itself on a line, though it DOES start the line - not sure if it has any significance.
Also note that the last </table> DOES start the line. This is definitely significant. If it didn't you would need to modify the regexp slightly:
<table(.*\p)*.*<\/table>
should do the trick to eat up anything on the line before the ending tag is reached.
Hope this helps.
Tom