need help creating this function
Posted: Tue Apr 01, 2008 12:33 am
need help creating an array
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
$instr='ABc25K3';
preg_match_all('/[a-zA-Z][0-9]/', $instr, $matches);
echo implode('<br/>', $matches[0]);