I\'m trying to write a regular expression in Java which removes all non-alphanumeric characters from a paragraph, except the spaces between the words.
This is the co
Victoria, you must write \\s not \s here.
\\s
\s