vote up 0 vote down star
1

What am I doing wrong here?

string q = "john s!";
string clean = Regex.Replace(q, @"([^a-zA-Z0-9]|^\s)", string.Empty);
// clean == "johns". I want "john s";
flag

ok, duh i'm dumb ^ is starts with...i'm tired. still don't know how to match just a space – John Sheehan Oct 8 '08 at 4:39

4 Answers

vote up 2 vote down

I suspect ^ doesn't work the way you think it does outside of a character class.

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.

link|flag
you're right, that's starts with (which i knew, but it's late) – John Sheehan Oct 8 '08 at 4:38
vote up 1 vote down check

I got it:

string clean = Regex.Replace(q, @"[^a-zA-Z0-9\s]", string.Empty);

Didn't know you could put \s in the brackets

link|flag
Your regex will only match strings which do not contain alpha numerics, numbers or spaces. The ^ at the start of a [] means "not anything inside here" – JaredPar Oct 8 '08 at 4:56
That's exactly what I want. In the Regex.Replace, I want to match anything that's NOT a letter, number or space. – John Sheehan Oct 8 '08 at 4:58
Ah okay, clearer now. – JaredPar Oct 8 '08 at 5:04
vote up 1 vote down

There appear to be two problems.

  1. You're using the ^ outside a [] which matches the start of the line
  2. You're not using a * or + which means you will only match a single character.

I think you want the following regex @"([^a-zA-Z0-9\s])+"

link|flag
Wouldn't that replace all the alphanumerics and spaces with the empty string? – zigdon Oct 8 '08 at 4:39
Regarding #2, the quantifier doesn't really matter as he wants to replace all non-matching characters in the string rather than just a single run of them, which requires a global replace (.../g in Perl, not sure of the C# syntax), with or without the */+. – Dave Sherohman Oct 8 '08 at 13:31
vote up 0 vote down

The circumflex inside the square brackets means all characters except the subsequent range. You want a circumflex outside of square brackets.

link|flag
Yeah, I want it inside. Match anything that isn't these character ranges – John Sheehan Oct 8 '08 at 4:42
Oh, where you said "I want" I thought you meant you wanted a regular expression to match that. You meant you want the result of Replace to be that. So you want the regular expression to not match that. My brain hurts. – Windows programmer Oct 8 '08 at 4:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.