R
regexer
Gast
Java:
String s = "ab\\+";
System.out.println( s.matches( "ab\\\\+" ) ); //false
Wie muss ich den RegEx anpassen, um "true" zu erhalten?
String s = "ab\\+";
System.out.println( s.matches( "ab\\\\+" ) ); //false
neinZum Escapen des "\" benötige ich "\\" oder
String s = "\\";
System.out.println( s.matches( "\\\\" ) );
und warum 4 "\" zum Escapen des "+" Zeichens?
String s = "+";
System.out.println( s.matches( "\\+" ) );
s.matches(Pattern.quote("ab\\+"))
"ab\\+".matches(Pattern.quote(s))