vote up 1 vote down star

I am trying to make the user input exactly 4 characters with no spaces... here's what I have:

.[^\s]{4}

but everything I enter says that it didn't match the regex...

Where am I going wrong?

flag

Try /^[^\s]{4}$/ – RC Aug 11 at 17:58
nope, didn't work... – Matt Aug 11 at 18:01
when you say characters, do you mean only alpha characters and not numeric? Can you give an example of what should match and what shouldn't b/c the regex I gave you should match a four character long string, but it will match any for characters as long as they are not spaces. If you something that will match only alpha chars you would do /^[^\s\d]{4}$/ – RC Aug 11 at 18:04
I'm confused, b/c the answer you accepted is the same answer as I provided you in comments which you stated did not work. ? The only thing different is the /'s on the beginning and end that are considered generic indicators of a regular expression. – RC Aug 11 at 18:27
Maybe he is in an environment that doesn't want the /'s to delimit the regular expression, and didn't know to take them out. – Mike Cooper Aug 11 at 18:40

7 Answers

vote up 10 vote down check

Why is there an extra . in front? That will match a separate character before your "four non-spaces" get counted.

You probably also want to bind it to the beginning and end of the string, so:

^[^\s]{4}$
link|flag
1  
No understanding why you have an extra ^... – Kelsey Aug 11 at 18:12
@Kelsey: [^\s] is the same as [\S] – R. Bemrose Aug 11 at 18:15
@Kelsey: The ^ at the beginning of the string means it only matches the beginning of the string, and the $ at the end means it only matches the end of the string. – yodaj007 Aug 11 at 18:17
Ah but one takes more typing to produce the same results:) i++; or i = i + 1; :P – Kelsey Aug 11 at 18:17
@yodaj007 I know taht the ^ and $ do, see my answer below where I explained it all in detail. I just thought the use of two ^ was not needed. – Kelsey Aug 11 at 18:19
show 1 more comment
vote up 7 vote down

Your making it more complicated than it needs to be and using \S, not \s so you don't match spaces. I think this should work for you:

^[\S]{4}$

Definition of solution:

^ - begins with

[/S] - capital 'S' means no white space

{4} - match 4 times

$ - end of string

link|flag
+1 for a great explanation! – pcampbell Aug 11 at 18:14
vote up 1 vote down
\S{4}

will match 4 non-whitespace characters. If you are using c# regex, I highly recommend Expresso.

link|flag
Problem is because you have excluded the beginning and ending bits, it will also match text that is greater than 4 characters. He wants exactly 4 characters. – Kelsey Aug 11 at 18:11
vote up 0 vote down

Something like /^[^\s]{4}$/

link|flag
vote up 0 vote down

try out txt2re.com works for me.

link|flag
vote up 0 vote down

In Java:

[^\s]{4,4}
link|flag
vote up 0 vote down

Alright, edited out my less-good answer, since a better version was covered above, but figured I'd leave this part of my answer, since some might find it useful:

When testing C# regular expressions, I've found this site to be really helpful, as it allows you to quickly and easily test the expressions against various sample inputs, and with different RegEx flags set.

link|flag

Your Answer

Get an OpenID
or

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