Sparate Alpha-Numeric string to Alpha and Numeric String
If your string is having fixed format of alphabates & numeric values then sscanf() function is best to Separate it to Alpha and Numeric String
<?php
$example = 'AAA11111';
list($alpha,$numeric) = sscanf($example, "%[A-Z]%d");
print_r($alpha);
echo "<br>";
print_r($numeric);
?>
No comments:
Post a Comment