MySQL can be used to do some string replacements rather using any programming languages. The following is used to replace space with hyphen in list names 



UPDATE list SET list_name =
REPLACE(list_name, ' ', '-')
WHERE list_name LIKE '% %';

0 comments



Some Links (off programming)