tags:

views:

178

answers:

2

I want to remove all non-alphanumeric and space characters from a string. So I do want spaces to remain. What do I put for a space in the below function within the [ ] brackets:

ereg_replace("[^A-Za-z0-9]", "", $title);

In other words, what symbol represents space, I know \n represents a new line, is there any such symbol for a single space.

+7  A: 

Just put a plain space into your character class:

[^A-Za-z0-9 ]

For other whitespace characters (tabulator, line breaks, etc.) use \s instead.

You should also be aware that the PHP’s POSIX ERE regular expression functions are deprecated and will be removed in PHP 6 in favor of the PCRE regular expression functions. So I recommend you to use preg_replace instead:

preg_replace("/[^A-Za-z0-9 ]/", "", $title)
Gumbo
Really nice answer.
Franz
+2  A: 

If you want only a literal space, put one in. the group for 'whitespace characters' like tab and newlines is \s

Chibu