I'm new to regex.
I have a string 2¯< .
I want to get the '&#number' part.
I tried with the following pattern:
Pattern.compile("\\&#([0-9]+);/")
but no result.
I'm new to regex.
I have a string 2¯< .
I want to get the '&#number' part.
I tried with the following pattern:
Pattern.compile("\\&#([0-9]+);/")
but no result.