Hi,
How can I find Texts like this?
<div ..... anytext (but not >) .....>
the first ending > may be on several lines later.
texte over several lines
- DigitalVolcano
- Site Admin
- Posts: 1863
- Joined: Thu Jun 09, 2011 10:04 am
Re: texte over several lines
The answer here may help - it's for grabbing a whole div using regex-
https://stackoverflow.com/questions/346 ... pecific-id
So you'd want something like
<div [^>]*></div>
https://stackoverflow.com/questions/346 ... pecific-id
So you'd want something like
<div [^>]*></div>