Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i need a way to convert all characters except [0-9] [a-z] [A-Z] to a "-" how do i do it in php thanks!

share|improve this question

1 Answer

up vote 9 down vote accepted
$yourString = preg_replace("/[^0-9a-zA-Z]/", "-", $yourString);

I think that should do it.

share|improve this answer
you are everywhere C# php awesome thanks :) – peplamb May 5 '11 at 22:56
1  
Always happy to help :) – rynah May 5 '11 at 22:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.