Regex to match alphanumeric and spaces - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T00:32:25Zhttp://stackoverflow.com/feeds/question/181356http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/181356/regex-to-match-alphanumeric-and-spaces0Regex to match alphanumeric and spacesJohn Sheehan2008-10-08T04:35:34Z2008-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#1813622Answer by zigdon for Regex to match alphanumeric and spaceszigdon2008-10-08T04:37:38Z2008-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#1813671Answer by JaredPar for Regex to match alphanumeric and spacesJaredPar2008-10-08T04:38:56Z2008-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#1813690Answer by Windows programmer for Regex to match alphanumeric and spacesWindows programmer2008-10-08T04:39:35Z2008-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#1813711Answer by John Sheehan for Regex to match alphanumeric and spacesJohn Sheehan2008-10-08T04:41:09Z2008-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>