Using Java regex pattern I want to match the & symbol. But it should not match &, < etc... (HTML encoding).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Try this:
This matches an |
|||||||||
|
|
I don't think Regex is the right way to go for this problem. Maintain a list of all the HTML encodings you want to remove. Preprocess the text and remove all such occurrences and then check for '&'. |
|||||
|