RegExp: Remove All Non-alphanumeric

'Sup guys.

I came across a rather sleek .NET example of using a regular expression to strip a string of non-alphanumeric characters:

Regex.Replace(stringToCleanUp, "[\W]", "");