I need to remove all characters before the first letter... How do I search for the position of the first occurance of [a-z] & [A-Z].
$test = "1234 123423-34 This is a test";
$string = preg_replace('/REGEX/', "", $test);
echo $string;
Should output: This is a test