vote up 0 vote down star

How can I create a regex expression which will match only letters and numbers, and one space between each word?

Good Examples:

Amazing

Hello Beautiful World

I am 13 years old

Bad Examples:

Hello  world

I am 13 years      old.

I    am   Chuck Norris
flag

Do you want to match a line containing multiple words like these or only one word at a time? Can you please elaborate with some examples what is it exactly that you want to match? – Jass Oct 27 at 12:59
Added some examples, sorry. – Alon Oct 27 at 13:55
Why the requirement to disallow multiple spaces? Is it really that important, or can you just automatically convert all multiple spaces to single spaces before applying the regex? Or, is this just an academic exercise? – Bryan Oakley Oct 27 at 13:58
Actually, I don't know. That's what my manager wanted. – Alon Oct 27 at 14:08

5 Answers

vote up 2 vote down check

Most regex implementations support named character classes:

^[[:alnum:]]+( [[:alnum:]]+)*$

You could be clever though a little less clear and simplify this to:

^([[:alnum:]]+ ?)*$

FYI, the second one allows a spurious space character at the end of the string. If you don't want that stick with the first regex.

Also as other posters said, if [[:alnum:]] doesn't work for you then you can use [A-Za-z0-9] instead.

link|flag
I'll give you a vote if you add " ?" at the start to handle a single space at the start of the line/string (and the ^$ anchor points). Everything else seems good. – paxdiablo Oct 27 at 13:35
It dosen't seems to work (I need it in ASP RegExp) – Alon Oct 27 at 14:01
Sorry, just saw your edit. It's working great the following regex: ^([A-Za-z0-9]+ ?)*$ Thank you so much! – Alon Oct 27 at 14:03
vote up 0 vote down
^[a-zA-Z]+([\s][a-zA-Z]+)*$
link|flag
vote up 0 vote down
(?:[a-zA-Z0-9]+[ ])+[a-zA-Z0-9]+

If I understand you correctly the above regex should work. See screenshot below:

screenshot

link|flag
vote up 1 vote down
([a-zA-Z0-9]+ ?)+?
link|flag
And a space at the start of the line is handled how? :-) – paxdiablo Oct 27 at 13:18
vote up 0 vote down

This would match a word

'[a-zA-Z0-9]+\ ?'
link|flag
Great, now make that handle a line :-) – paxdiablo Oct 27 at 13:17
No, it would match some words. Only those containing the (ascii) ranges a-z and A-Z. The word café would not be matched. It would also match strings that consist solely of digits like 01012009, something I wouldn't call a word. – Bart K. Oct 27 at 13:20

Your Answer

Get an OpenID
or

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