Hi all,
Another n00b question.
$ab = "A00000001"
echo $a; // gives result "A"
echo $b; // gives result "1"
$ab = "B01250"
echo $a; // gives result "B"
echo $b; // gives result "1250"
What's the easiet single way to convert "ab" to "a" and "b" in both examples above?
Thanks!