Java – Replacing all non-alphanumeric characters with empty strings

javanon-alphanumericregex

I tried using this but didn't work-

return value.replaceAll("/[^A-Za-z0-9 ]/", "");

Best Answer

Use [^A-Za-z0-9].

Note: removed the space since that is not typically considered alphanumeric.