Regex to match alphanumeric and spaces - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:32:25Z http://stackoverflow.com/feeds/question/181356 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/181356/regex-to-match-alphanumeric-and-spaces 0 Regex to match alphanumeric and spaces John Sheehan 2008-10-08T04:35:34Z 2008-10-08T05:05:56Z <p>What am I doing wrong here?</p> <pre><code>string q = "john s!"; string clean = Regex.Replace(q, @"([^a-zA-Z0-9]|^\s)", string.Empty); // clean == "johns". I want "john s"; </code></pre> http://stackoverflow.com/questions/181356/regex-to-match-alphanumeric-and-spaces/181362#181362 2 Answer by zigdon for Regex to match alphanumeric and spaces zigdon 2008-10-08T04:37:38Z 2008-10-08T04:37:38Z <p>I suspect ^ doesn't work the way you think it does outside of a character class.</p> <p>What you're telling it to do is replace everything that isn't an alphanumeric with an empty string, OR any leading space. I think what you mean to say is that spaces are ok to not replace - try moving the \s into the [] class.</p> http://stackoverflow.com/questions/181356/regex-to-match-alphanumeric-and-spaces/181367#181367 1 Answer by JaredPar for Regex to match alphanumeric and spaces JaredPar 2008-10-08T04:38:56Z 2008-10-08T05:05:56Z <p>There appear to be two problems.</p> <ol> <li>You're using the ^ outside a [] which matches the start of the line</li> <li>You're not using a * or + which means you will only match a single character.</li> </ol> <p>I think you want the following regex @"([^a-zA-Z0-9\s])+"</p> http://stackoverflow.com/questions/181356/regex-to-match-alphanumeric-and-spaces/181369#181369 0 Answer by Windows programmer for Regex to match alphanumeric and spaces Windows programmer 2008-10-08T04:39:35Z 2008-10-08T04:39:35Z <p>The circumflex inside the square brackets means all characters except the subsequent range. You want a circumflex outside of square brackets.</p> http://stackoverflow.com/questions/181356/regex-to-match-alphanumeric-and-spaces/181371#181371 1 Answer by John Sheehan for Regex to match alphanumeric and spaces John Sheehan 2008-10-08T04:41:09Z 2008-10-08T04:41:09Z <p>I got it:</p> <pre><code>string clean = Regex.Replace(q, @"[^a-zA-Z0-9\s]", string.Empty); </code></pre> <p>Didn't know you could put \s in the brackets</p>