regex help
1.
p(?!([^<]+)?>) "find character 'p' everywhere except within html tags"
2.
p(?!([^&]+)?;) "find character 'p' everywhere except within named entities"
i would like to merge these 2 searches to 1, so my new search would skip both tags and named entities.
i could replace all named entities with decimal, but this is indirect solution.
|