Is there any way of excluding this characters: - \ _ to this pattern? I need especifically this pattern and no other
Pattern pattern = Pattern.compile("[\\p{P}\\p{Z}]");
|
Is there any way of excluding this characters: - \ _ to this pattern? I need especifically this pattern and no other
|
|||
|
|
Use character class subtraction:
|
|||
|
|
|
Generally to exclude a character you prepend it with ^. for example to match any number of characters that do not containt character 'a' you write:
|
|||
|
|