"abcdefgh".replaceAll("[ae]", "=")
"abcdefgh".replaceAll("[a-e]", "=")
"abcdefgh".replaceAll("[^a-e]", "=")
"abcdefgh".replaceAll("(b|d|f)", "=")
"abcdefgh".replaceAll("a-ce-h", "=")
"abcdefgh".replaceAll("\\p{XDigit}", "=")
abc|def
"Abc".matches("(?i)[a-z]+")
"ABC".replaceAll("(.)", "$1$1")
"aaa".matches("a+")
"aaa".matches("a?")
"Joe Muster".replaceAll("(\\w+)\\s(\\w+)", "$2 $1")
+ * ?
\b $ ^
int i = i * 2;
([A-Z][aeoui][a-z][0-9]){2}
convertertmp | Dec 02, 18:49 |
Jun 18, 09:15 | |
atest/erben | May 02, 10:37 |
atest/oop2 | Apr 18, 10:30 |
thm/Studium | Mar 30, 11:58 |
atest/oop1 | Mar 30, 11:57 |