Does any one know how to find following string using regular expressi开发者_运维知识库on of visual studio?
<fo:block>
</fo:block>
I have tried with following but it didn't work
\<fo\:block\>*$\n*\</fo\:block\>$
This works for me but it's not pretty...
\<fo\:block\>.*\x0d\x0a.*\x0d\x0a.*\<\/fo\:block\>
I thought I tried this:
\<fo\:block\>.*\n.*\n.*\<\/fo\:block\>
yesterday but apparently I didn't because it works.
精彩评论