Quote:
Originally Posted by Tex2002ans
For a very simple check, I used to use this Regex along these lines to search for opening quotes with no closing quotes
|
Thanks

I'm still using this regex for opening quotes with no closing ones:
Code:
(?<=«[^»]*)</p>\s*<p[^>]*>(?!«)
And viceversa:
Code:
(<p[^>]*>[^«]*([»])(.*)?<[^p>]*/p>)