hello, will the following example replace everything between '#example ' and '#end example.*' ? I am trying to strip the following from a file;
#example -- do not remove this line! test1 #comment test2 $ test3 #another comment . #end example -- do not remove this line! everything between '#example' and '#end example.*' must be stripped out. here is my expression: <replaceregex pattern="#example(\n.)+#end example.*" replace="" flags="g" /> Thanks!