I would like to remove everything but the Characters a-z,A-Z and 0-9 from a String so I need to create a regular expression for Java’s string.replaceAll(regex, "");
The old string would look like this:
MAX EUK_1334-PP/B+
The new string should look like this:
MAXEUK1334PPB
There’s probably a more concise regex, but this will certainly work: