Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
2k views

Algorithm to format text to Pascal or camel casing

Using this question as the base is there an alogrithm or coding example to change some text to Pascal or Camel casing. For example: mynameisfred becomes Camel: myNameIsFred Pascal: MyNameIsFred
1
vote
4answers
114 views

Newbie question about PascalCase

ReSharper extension of VS suggest me to use PascalCase in below property. public Color Color { get; private set; } Here Color is Enum type. I would never thought this can be possible because it is ...
1
vote
3answers
574 views

Regex that matches Camel and Pascal Case

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 ...