vote up 0 vote down star

What is the regular exp for a text that can't contain any special characters except space?

flag

Are you looking for only alphanumeric + space as your character set? – Josh May 29 at 3:45
You'll have to be a bit more explicit in a listing of what you consider special characters. – pcampbell May 29 at 3:45
Yes Josh. It only alphanumeric + space. – Ortus Mallum May 29 at 3:47
I haven't used C#, but in every other regex engine I haved used, \s also includes tabs. – too much php May 29 at 3:52

6 Answers

vote up 2 vote down check

Because Prajeesh only wants to match spaces, \s will not suffice as it matches all whitespace characters including line breaks and tabs.

A character set that should universally work across all RegEx parsers is:

[a-zA-Z0-9\0x0020]

Further control depends on your needs. Word boundaries, multi-line support, etc... I would recommend visiting Regex Library which also has some links to various tutorials on how Regular Expression Parsing works.

link|flag
vote up 2 vote down

You need @"^[A-Za-z0-9 ]+$". The \s character class matches things other than space (such as tab) and you since you want to match sure that no part of the string has other characters you should anchor it with ^ and $.

link|flag
Could you please tell me what is the use of anchor in a regx? – Ortus Mallum May 29 at 3:59
2  
Different RegEx parsers utilize different anchors, but basically ^ anchors the match to the beginning of the string, while $ anchors to the end of the string. So [a] used on the string 'aaaaa' would yield five matches, while ^[a] would produce only one. – Josh May 29 at 4:02
1  
Here: regular-expressions.info/anchors.html – Alan Moore May 29 at 4:03
vote up 4 vote down

Assuming "special characters" means anything that's not a letter or digit, and "space" means the space character (ASCII 32):

^[A-Za-z0-9 ]+$
link|flag
vote up 0 vote down

In C#, I'd believe it's ^(\w|\s)*$

link|flag
A character class would be better: ^[\w\s]*$, but that depends on whether you count things like tabs as being spaces. – Chas. Owens May 29 at 3:51
vote up 0 vote down

If you just want alphabets and spaces then you can use: @"[A-Za-z\s]+" to match at least one character or space. You could also use @"[A-Za-z ]+" instead without explicitly denoting the space.

Otherwise please clarify.

link|flag
vote up 2 vote down

[\w\s]*

\w will match [A-Za-z0-9] and the \s will match whitespaces.

[\w ]* should match what you want.

link|flag
\s matches all whitespace characters which Prajeesh specifically wants to exclude. – Josh May 29 at 3:57
1  
I have edited accordingly. Thank you, Josh. – Alan Haggai Alavi May 29 at 4:11

Your Answer

Get an OpenID
or

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