Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I got a question when I was doing some Array in PHP. I don't know how to write the code for the following case:

$arrs = array("a@c", "cr", "exd", "hello", "gg%j", "hwa", "@", "8");

foreach ($arrs as $arr){
// if $arr does not belong to any characters from a to z, 
// then there must be some special character in it.
// Say for example, "a@c" will still be regarded as fine string, 
// since it contains normal characters a and c.
// another example, "gg%j" will also be fine, since it contains g and j.
}
share|improve this question

3 Answers

up vote 3 down vote accepted

You could use a regex, and the preg_match function :

$arrs = array("abc", "cr", "exd", "hello", "gj", "hwa", "@", "8");
foreach ($arrs as $arr){
    // if $arr does not belong to any characters from a to z, 
    // then there must be some special character in it.
    if (!preg_match('/^[a-z]*$/', $arr)) {
        var_dump($arr);
    }
}

Which would get you the following output :

string '@' (length=1)
string '8' (length=1)


Here, the regex is matching :

  • beginning of string : ^
  • any number of characters between a and z : [a-z]*
  • end of string : $

So, if the string contains anything that's not between a and z, it will not match ; and var_dump the string.

share|improve this answer
if(!preg_match("/^[a-z]*$/", $arr)) {
    // $arr has something other than just a to z in it
}
share|improve this answer
$arrs = array("abc", "cr", "exd", "hello", "gj", "hwa", "@", "8");

foreach ($arrs as $arr){
// if $arr does not belong to any characters from a to z, 
// then there must be some special character in it.
   if(preg_match("/[a-zA-Z]+/",$arr)==0)
   {
       echo "There must be a special character in it.";
   }
}

This sounds suspiciously like a homework question...

share|improve this answer
No this is not homework – user327712 Apr 30 '10 at 3:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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