show/hide this revision's text 4 updated to allow for numerics

PHP sample:

$string = "A man, a plan, a canal, Panama";

function is_palindrome($string)
{
    $a = strtolower(preg_replace("/[^A-Za-z]/","",$string))strtolower(preg_replace("/[^A-Za-z0-9]/","",$string));
    return $a==strrev($a);
}

Removes any non-alphabetic non-alphanumeric characters (spaces, commas, exclamation points, etc.) to allow for full sentences as above, as well as simple words.

    Post Made Community Wiki by Community
show/hide this revision's text 3 added 17 characters in body

PHP sample:

$string = "A man, a plan, a canal, Panama";

function is_palindrome($string)
{
    $a = strtolower(preg_replace("/[^A-Za-z]/","",$string));
    return $a==strrev($a);
}

Removes any non-alphabetic characters (spaces, commas, exclamation points, etc.) to allow for full sentences as above, as well as simple words.

show/hide this revision's text 2 added 66 characters in body
show/hide this revision's text 1