I'm about to write a parser for a language that's supposed to have strict syntactic rules about naming of types, variables and such. For example all classes must be PascalCase, and all variables/parameter names and other identifiers must be camelCase.

For example HTMLParser is not allowed and must be named HtmlParser. Any ideas for a regexp that can match something that is PascalCase, but does not have two capital letters in it?

link|improve this question

2  
I believe that last sentence should be "...but does not have two consecutive capital letters in it?" – Chris Lutz Jan 20 '10 at 17:54
4  
Suppose I want to write a C preprocessor in that language. Must I name my class Cpreprocessor? Are underscores (C_Preprocessor) allowed? – Wayne Conrad Jan 20 '10 at 17:55
4  
Would H be a valid class name? – Greg Bacon Jan 20 '10 at 17:56
@Chris yeah, it should not have 2 consecutive capital letters in it. C_preprocessor is not allowed, it'd have to be PreprocessorForC or something similar. – Marcin Jan 22 '10 at 9:30
feedback

3 Answers

up vote 1 down vote accepted

camelCase:

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

PascalCase:

^[A-Z][a-z]+(?:[A-Z][a-z]+)*$
link|improve this answer
feedback
/([A-Z][a-z]+)*[A-Z][a-z]*/

But I have to say your naming choice stinks, HTMLParser should be allowed and preferred.

link|improve this answer
+1 for a regex and a comment on the naming convention that both look suspiciously similar to what I was going to post, though I would simplify the regex to /(?:[A-Z][a-z]+)+/ (I don't think the OP is concerned with allowing AaA as a class name). – Chris Lutz Jan 20 '10 at 17:54
1  
Yeah, I considered that, but figured AaA doesn't have two consecutive uppercase letters. A bigger problem not yet addressed by this scheme is numbers, do they count as upper, lower, neither, or both? – Roger Pate Jan 20 '10 at 17:58
1  
Also underscores. – Chris Lutz Jan 20 '10 at 17:59
It's missing some details - like numbers, other than that it seems to work. – Marcin Jan 22 '10 at 9:31
feedback

I don't believe the items listed can start with numbers (thought I read it somewhere so take it with a grain of salt) so the best case would be something like Roger Pate's with a few minor modifications (in my opinion)

/([A-Z][a-z0-9]+)*[A-Z][a-z0-9]*/

Should be something like, Look for a Capital Letter, then at least one small case or number, or more, as well as it looks like it handles just a capital letter as that seems to be required, but the additional letters are optional.

Good luck

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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