I'm using PHP and not really good with regex. I need a preg_replace that can add a space if a letter or number is adjacent.
These are the scenarios:
mystreet12 -> mystreet 12
mystreet 38B -> mystreet 38 B
mystreet16c -> mystreet 16 c
my street8 -> my street 8
Thanks.