I have a regex where I try to find this pattern in a text 15:30:55 (it's time). And the Pattern.compile is giving out an error PatternSyntaxException: U_ILLEGAL_ARGUMENT_ERROR
Here is my code
Pattern.compile("[0-9]{1,2}[:][0-9]{1,2}[:][0-9]{1,2}");