<?php

$mystring = "A1B22C333";
$pattern  = '~(?=\D)~';
$arr = preg_split($pattern, $mystring, -1, PREG_SPLIT_NO_EMPTY);
print_r($arr);