views:

90

answers:

3

Hi,

I want to know the regexp for the following case:

The string should contain only alphabetic letters. It must start with a capital letter followed by small letter. Then it can be small letters or capital letters.

^[A-Z][a-z][A-Za-z]*$

But the string must also not contain an consecutive capital letters. How do I add that logic to the regexp? I.e HttpHandler is correct, HTTPHandler is wrong.

-Kiki

+8  A: 
^([A-Z][a-z]+)+$

This looks for sequences of an uppercase letter followed by one or more lowercase letters. Consecutive uppercase letters will not match, as only one is allowed at a time, and it must be followed by a lowercase one.

Oren Trutner
Pls excuse my ignorance. See, this is my regexp as of now: (^[A-Z][a-z][A-Za-z]*$)|(^I[A-Z][a-z][A-Za-z]*$). Into this, I have to add the logic to check capital letters do not com together in the [A-Za-z] portion. What would you suggest? And what does + mean exactly?
kiki
+2  A: 

Whenever one writes [A-Z] or [a-z], one commits to processing nothing but 7-bit ASCII data. If that's really ok, then fine. But if it's not, the Unicode properties exist to help with this.

There are three cases in Unicode, not two. Furthermore, you also have noncased letters. Letters in general are specified by the \pL property, and each of these also belongs to exactly one of five subcategories:

  1. uppercase letters, specified with \p{Lu}; eg: AÇDZÞΣSSὩΙST
  2. titlecase letters, specified with \p{Lt}; eg: LjDzSsᾩSt (actually Ss and St are an upper- and then a lowercase letter, but they are what you get if you ask for the titlecase of ß and , respectively)
  3. lowercase letters, specified with \p{Ll}; eg: aαçdzςσþßᾡſt
  4. modifier letters, specified with \p{Lm}; eg: ʰʲᴴᴭʺˈˠᵠꜞ
  5. other letters, specified with \p{Lo}; eg: ƻאᎯᚦ京

You can take the complement of any of these, but be careful, because something like \P{Lu} does not mean a letter that isn't uppercase. It means any character that isn't an uppercase letter.

For letter that's either of uppercase or titlecase, use [\p{Lu}\p{Lt}]. So you could use for your pattern:

      ^([\p{Lu}\p{Lt}]\p{Ll}+)+$

If those you don't mean to limit the letters following the first to the casing letters alone, then you might prefer:

     ^([\p{Lu}\p{Lt}][\p{Ll}\p{Lm}\p{Lo}]+)+$

If you're trying to match so-called "CamelCase" identifiers, then the actual rules depend on the programming language, but usually include the underscore character and the decimal numbers (\p{Nd}), and may include a literal dollar sign. If this is so, you may wish to add some of these to the one or the other of the two character classes above. For example, you may wish to add underscore to both but digits only to the second, leaving you with:

     ^([_\p{Lu}\p{Lt}][_\p{Nd}\p{Ll}\p{Lm}\p{Lo}]+)+$

If, though, you are dealing with certain words from various RFCs and ISO standards, these are often specified as containing ASCII only. If so, you can get by with the literal [A-Z] idea. It's just not kind to impose that restriction if it doesn't actually exist.

tchrist
+1  A: 

Oren Trutners answer isn't quite right (see sample input of "RightHerE" which must be matched but isn't)

Here is the correct solution:

(?!^.*[A-Z]{2,}.*$)^[A-Za-z]*$

edit:

(?!^.*[A-Z]{2,}.*$)  // don't match the whole expression if there are two or more consecutive uppercase letters
^[A-Za-z]*$          // match uppercase and lowercase letters

/edit

the key for the solution is a negative lookahead see: http://www.regular-expressions.info/lookaround.html

hacktick