How do I find all CamelCased words in a document with a regular expression? I'm only concerned with Upper camel case (i.e., camel cased words in which the first letter is capitalized).
|
|
([A-Z][a-z0-9]+)+ Assuming English. Use appropriate character classes if you want it internationalizable. This will match words such as "This". If you want to only match words with at least two capitals, just use ([A-Z][a-z0-9]+){2,} UPDATE: As I mentioned in a comment, a better version is:
It matches strings that start with an uppercase letter, contain only letters and numbers, and contain at least one lowercase letter and at least one other uppercase letter. |
||||||||||
|
|
|
Adam Crume's regex is close, but won't match for example
The same caveats as for Adam's answer regarding digits, I18N, underscores etc. You can test it out here. |
||
|
|
|
|
This seems to do it:
I've included Ruby unit tests:
|
||
|
|
|
Should do the trick for upper camel case. You can add leading underscores to it as well if you still want to consider something like _IsRunning upper camel case. |
||
|
|
