vote up 2 vote down star

I want to make sure a string has only characters in this range

[a-z] && [A-Z] && [0-9] && [-]

so all letters and numbers plus the hyphen. I tried this...

C# App:

        char[] filteredChars = { ',', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '_', '+', '=', '{', '}', '[', ']', ':', ';', '"', '\'', '?', '/', '.', '<', '>', '\\', '|' };
        string s = str.TrimStart(filteredChars);

This TrimStart() only seems to work with letters no otehr characters like $ % etc

Did I implement it wrong? Is there a better way to do it?

I just want to avoid looping through each string's index checking because there will be a lot of strings to do...

Thoughts?

Thanks!

flag

You should check that the input is valid rather than what it shouldn't take. Use Regex to check your string. – David Liddle May 25 at 20:46

5 Answers

vote up 10 vote down check

This seems like a perfectly valid reason to use a regular expression.

bool stringIsValid = Regex.IsMatch(inputString, @"^[a-zA-Z0-9\-]*?$");

In response to miguel's comment, you could do this to remove all unwanted characters:

string cleanString = Regex.Replace(inputString, @"[^a-zA-Z0-9\-]", "");

Note that the caret (^) is now placed inside the character class, thus negating it (matching any non-allowed character).

link|flag
A little disclaimer: I just made the pattern up from the top of my head, so it might not be exactly what you're after. You'll be able to find the information you need to construct your ideal pattern if you follow the link. – Tomas Lycken May 25 at 20:47
i think he wanted to remove any chars that were unwanted, however... – miguel May 25 at 20:50
3  
You need to put an @ symbol infront of the string so it doesn't try to escape the - : Regex.Replace(s, @"[^A-z0-9\-]", ""); – Joel May 25 at 21:01
Awesome exactly what I was looking for! – gmcalab May 25 at 21:08
1  
Quote from regular-expressions.info/reference.html: ? "Makes the preceding item optional. Greedy, so the optional item is included in the match if possible." Now that I think about it, you might not want that in this specific pattern, but I think it'll work with or without... – Tomas Lycken May 25 at 21:32
show 4 more comments
vote up 4 vote down

Here's a fun way to do it with LINQ - no ugly loops, no complicated RegEx:

private string GetGoodString(string input)
{
   var allowedChars = 
          Enumerable.Range('0', '9').Concat(
          Enumerable.Range('a', 'z')).Concat(
          Enumerable.Range('-', '-'));

   var goodCharsInInput = input.Where(c => allowedChars.Contains(c));
   return new string(goodCharsInInput.ToArray());
}

Feed it "Hello there, world123!" and it will return "Hellothereworld123".

link|flag
I must say I like this, just because you're avoiding RegExes =) +1! – Tomas Lycken Jun 11 at 12:06
vote up 1 vote down

Try the following

public bool isStringValid(string input) {
  if ( null == input ) { 
    throw new ArgumentNullException("input");
  }
  return System.Text.RegularExpressions.Regex.IsMatch(input, "^[A-Za-z0-9\-]*$");
}
link|flag
Or you could do this: return Regex.Replace(input ?? string.Empty, @"[^A-z0-9\-]", ""); – Joel May 25 at 21:06
vote up 0 vote down

Why not just use replace instead? Trimstart will only remove the leading characters in your list...

link|flag
Because then Ill have to have a tons of replace statements... – gmcalab May 25 at 20:46
just write a loop to scan and remove then – miguel May 25 at 20:48
vote up 0 vote down

I'm sure that with a bit more time you can come up wiht something better, but this will give you a good idea:

public string NumberOrLetterOnly(string s)
{
    string rtn = s;
    for (int i = 0; i < s.Length; i++)
    {
        if (!char.IsLetterOrDigit(rtn[i]) && rtn[i] != '-')
        {
            rtn = rtn.Replace(rtn[i].ToString(), " ");
        }
    }
    return rtn.Replace(" ", "");
}
link|flag
Oh, I just noticed that he didn't want loops. Besides the regex solution looks better anyway. I won't delete my post though, because some of those methods still might be helpful – Joel May 25 at 20:57

Your Answer

Get an OpenID
or

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