vote up 0 vote down star

Try as I might, I can't get a RegEx to exclude space or single quotes.

  • The string "abc" is allowed
  • Not allowed: "a'bc", "'", "'abc", "'''", "abc''" etc
  • Spaces could replace the ' too in the above example
  • Trailing and leading spaces are assumed to be removed already
  • Empty strings are checked elsewhere
  • Target language is javascript

I'd use PATINDEX if I was in SQL.

Or NOT a positive match on either space or single quote, if I could negate...

I've tried (for single quote only)

  • \w*[^']\w*
  • ^\w*[^']\w*$
  • others I forget now

Please put me out of my misery so I can sleep tonight.

Edit:

  • Target string will not be surrounded by Quotes. I thought thy might add clarity
  • If "Target language is javascript" is wrong, then it's c#. I'd have to check where we do the validation exactly: client javascript or server c#
flag

What regular expression language? Python, Perl, C#, Java? They are all subtly different. – Christopher Jul 14 at 20:21
It the test string always going to be surrounded in double quotes? – laz Jul 14 at 20:22

5 Answers

vote up 2 vote down check

^[^\'\ ]*$
?

link|flag
I used ^[^' ]*$ ...I see where I was going wrong. Thanks – gbn Jul 15 at 6:47
Yeah, I always escape to much... – wuub Jul 15 at 7:23
vote up 0 vote down

Looks like your question has been answered. If not, please provide more details about where the string is coming from.

If you are trying to restrict a field that is being entered by a user, you could check each key stroke rather than the entire string.

link|flag
Yes, we are trying to restrict use data entry. No, we can't do it per key stroke. Our RegEx is a database field to be applied on validation. – gbn Jul 15 at 4:20
vote up 0 vote down

i think this

^\w*$

should work as \w does not include single quote or space.

link|flag
vote up 4 vote down

Quite simple. Does not allow empty strings.

^[^' ]+$
link|flag
wuub answered first but thanks +1. This also works. Why + and not * though please? – gbn Jul 15 at 6:48
+1 for the non escaped version. You're probably better regexper that I am :) – wuub Jul 15 at 7:33
1  
+ instead of * to disallow empty strings. – Daniel Brückner Jul 15 at 8:48
vote up 0 vote down

Without reading the details, I don't see [^ '] in there anywhere (with a space and a single-quote).

link|flag
Correct. I was initially testing for single quote only – gbn Jul 15 at 4:12
..which was mentioned... – gbn Jul 15 at 6:49

Your Answer

Get an OpenID
or

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