regex - Regular expression needed for PHP -
regex - Regular expression needed for PHP -
can tell me regular look utilize within php find following:
<p> </p>
variation of white space between tags
<p><br/>
1 time again variation of white space between tags
any help appreciated, thanks!
pretty straightforward (and folks, because he's asking things whitespace between them, not nested tags or attributes or of that, parser isn't necessary in case...)
/<p>\s+<\/p>/ /<p>\s+<br\/>/
php regex
Comments
Post a Comment