I was wondering if this can be done directly in a MySQL database:
I have a column with canadian postal codes (alphanumeric values) and would want to strip all non alphanumeric characters (spaces, dashes, etc)
Basically, running this on all the fields:
ereg_replace("[^A-Za-z0-9]
", "", $postalCode );
Excuse a newbie...
Start Free Trial