PHP
<?PHP
$str="2000-08-12T03:54:54Z";
if (ereg("\d",$str))
{
echo "String contains number.";
}
?>
The matches can be stored into an array which is the 3rd parameter of the function.
<?PHP
$str="2000-08-12T03:54:54Z";
if (ereg("^((\d+)\-\d+\-\d+)T",$str,$mats))
{
echo "$mats[0]"; //2000-08-12T
echo "$mats[1]"; //2000-08-12
echo "$mats[2]"; //2000
}
?>
<?PHP
$str="2000-08-12T03:54:54Z";
if (eregi("^((\d+)\-\d+\-\d+)t",$str,$mats))
{
echo "$mats[0]"; //2000-08-12T
}
?>
Similiar functions include