up vote 4 down vote favorite
share [g+] share [fb]

I want to find whether a string contains any of the special characters like !,@,#,$,%,^,&,*,(,)....etc.

How can I do that without looping thorugh all the characters in the string?

link|improve this question

74% accept rate
feedback

5 Answers

up vote 2 down vote accepted
  Regex RgxUrl = new Regex("[^a-z0-9]");
                    blnContainsSpecialCharacters = RgxUrl.IsMatch(stringToCheck);
link|improve this answer
2  
Did u missed A-Z.. – Manish Mar 26 '10 at 11:59
feedback

Use String.IndexOfAny:

private static readonly char[] SpecialChars = "!@#$%^&*()".ToCharArray();

...

int indexOf = text.IndexOfAny(SpecialChars);
if (indexOf == -1)
{
    // No special chars
}

Of course that will loop internally - but at least you don't have to do it in your code.

link|improve this answer
Hey Jon, how will you implement Mark's Byers thought? – Manish Mar 26 '10 at 12:00
@Manish: Given that you're likely to have a wide range of characters to whitelist, a regex is probably the way to go. – Jon Skeet Mar 26 '10 at 12:15
feedback

Instead of checking if a string contains "special characters" it is often better to check that all the characters in the string are "ordinary" characters, in other words use a whitelist instead of a blacklist. The reason is that there are a lot of characters that could be considered "special characters" and if you try to list them all you are bound to miss one.

So instead of doing what you asked it might be better to check for example that your string matches the regex @"^\w+$", or whatever you need.

link|improve this answer
Nice thought...!! – Manish Mar 26 '10 at 11:59
-1, overrated. You didn't even attempt to answer the question, but just made up your own and answered that instead. While what you say is true, the question is not "which method is best...", it is "how to check...". – Bubblewrap Mar 26 '10 at 12:01
2  
@Bubblewrap: I suggested using a regex with a whitelist. Is that not a valid answer to the question? The problem with the black list method is the bit where he writes 'etc...'. Computers can't guess what you mean, and writing a list of all special characters is IMHO the wrong way to approach this problem. – Mark Byers Mar 26 '10 at 12:02
IMO it isn't. Without knowing the motivation behind the question, you can't really say that using a whitelist is a better (or even valid) alternative to using IndexOfAny. And the question was, as i read it, specifically about blacklists. – Bubblewrap Mar 26 '10 at 12:08
feedback

Using PHP, you can try:

if (preg_match("[^A-Za-z0-9]", $yourString) {
  //DO WHATEVER
}

This will return TRUE if the string contains anything other than a letter or number.

Hope this helps.

link|improve this answer
1  
The question is tagged C#. – Jon Skeet Mar 26 '10 at 11:57
1  
Not in C#, but still gave me the required regex. :) – Manish Mar 26 '10 at 11:58
@Manish: Well, that's a regex - but not one which matches the question exactly. If you'd said "I only want to include alphanumeric characters, and no accents etc" then that would have been a different matter. – Jon Skeet Mar 26 '10 at 12:16
1  
@Jon, I mentioned that I want to find whether a string contains ANY OF the special chars or not....In your answer, I can't mention all the special characters present in the world..right? hENCE, this serves the purpose... :) – Manish Mar 26 '10 at 12:21
feedback

Also...

foreach (char character in "some*!@#@!#string")
        {
            if(!Char.IsLetterOrDigit(character))
            {
                //It is a special character.
            }
        }
link|improve this answer
1  
-1, specifically said in question WITHOUT USING LOOP... – Manish Mar 26 '10 at 12:23
feedback

Your Answer

 
or
required, but never shown

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