2
votes
9answers
235 views
For what reason do we have the lower_case_with_underscores naming convention?
Depending on your interpretation this may or may not be a rhetorical question, but it really baffles me. What sense does this convention make? I understand naming conventions don't necessarily have to …
0
votes
9answers
187 views
camel case method names
I understand the reason to camel case variable names, but I've always wondered why you would camel case a method name? why is it toString() and not ToString()? What purpose does it serve?
2
votes
3answers
221 views
Converting camel case to underscore case in ruby
Is there any ready function which converts camel case Strings into underscore separated string?
I want something like this
"CamelCaseString".to_undescore
to return "camel_case_string"
1
vote
6answers
281 views
CSS: camelCase vs under_score
There is much to read out there concerning this old question. Most languages seem to have their preferred style - and everythings ok with this.
But what about this question of style in the CSS …
0
votes
3answers
42 views
Does identifier casing really matter?
FxCop thought me (basically, from memory) that functions, classes and properties should be written in MajorCamelCase, while private variables should be in minorCamelCase.
I was talking about a …
1
vote
1answer
33 views
Should I create an attribute to make camel-cased table names, spaced?
I want to customize the headings of my tables outputted in a dynamic data website. Specifically, if a column has a name like "PhonebookManager", I want it to display, "Phonebook Manager" (note the …
7
votes
5answers
222 views
Acronyms in Camel Back
I often see Java class names like
XmlReader
instead of
XMLReader
My gut feeling is to completely upper case acronyms, but apparently many people think differently. Or maybe it's just because a …
7
votes
6answers
389 views
Does the python standard library have function to convert CamelCase to camel_case?
Example:
>>> convert('CamelCase')
camel_case
1
vote
1answer
132 views
Convert Pascal-cased setter to an underscore-separated variable name
This is not as simple as it seems. Most of you are likely thinking of the regex /([A-Z])/_$1/ like I have found all over the Internet, but my particular situation is slightly more complicated. My …
0
votes
1answer
100 views
Does Resharper 4.1 support both Camel Humps and normal selection modes?
I've found the setting for Camel Humps in resharper:
Resharper -> Options -> Editor -> Use CamelHumps
The problem is that I would still like to be able to use the normal selection mode (i.e. the …
4
votes
2answers
249 views
How can I cut(1) camelcase words?
Is there an easy way in Bash to split a camelcased word into its constituent words?
For example, I want to split aCertainCamelCasedWord into 'a Certain Camel Cased Word' and be able to select those …
5
votes
8answers
694 views
Why True/False is capitalized in Python?
All members are camel case, right? Why True/False but not true/false, which is more relaxed?
4
votes
10answers
1k views
Best way to convert Pascal Case to a sentence
What is the best way to convert from Pascal Case (upper Camel Case) to a sentence.
For example starting with
"AwaitingFeedback"
and converting that to
"Awaiting feedback"
C# preferable but I …
0
votes
3answers
1k views
JavaME: Convert String to camelCase
What would be a simple implementation of a method to convert a String like "Hello there everyone" to "helloThereEveryone". In JavaME support for String and StringBuffer utility operations are quite …
4
votes
4answers
700 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
