As the title says I cannot match the "<" character in Java 8 regular expressions.
The following expressions all evaluate to false:
"<hello>".matches("<")
"<hello>".matches(Pattern.quote("<"))
"<hello>".matches("\\<")
"<hello>".matches(Pattern.quote("\\<"))
How can I escape angular brackets in regular expressions in Java 8?