active questions tagged camelcasing - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:27:31Z http://stackoverflow.com/feeds/tag/camelcasing http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1740116/for-what-reason-do-we-have-the-lowercasewithunderscores-naming-convention 2 For what reason do we have the lower_case_with_underscores naming convention? dav 2009-11-16T04:50:48Z 2009-11-16T20:45:45Z <p>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 have a rhyme or reason behind them, but why deviate from the already popular camelCase? <em>Is there</em> a rhyme and reason behind <code>lower_case_with_underscores</code> that I'm somehow missing? (and yes, I have read PEP 8 in its entirety, and yes, I do understand that it's merely a proposal, a guide, etc.)</p> <p>I suppose my real question would be this: I'm writing a Python library. In fact, with any luck, it may be a rather large library, relative to my other projects. I already try to adhere to PEP 8 as much as possible, and so far I've even maintained <code>lower_case_with_underscores</code> as PEP 8 instructs for function and method names. But it bugs me that I have to remember to use camelCase for Twisted, camelCase for <code>logging</code>, and just about everything else. <strong>What naming convention should I use, and why?</strong> </p> <p>It would probably amaze people that I care this much about naming, enough to write a lengthy question about it, and it amazes me, too. Perhaps I have a little OCD when it comes to these things. I don't have much of a "personal opinion" about it as much as I have a tendency to just go for whatever is used the most, which in this case, would be camelCase - but it annoys me even further to find out that I'm probably breaking some eternal laws about explicit vs implicit and the zen of python written in stone or something. </p> http://stackoverflow.com/questions/521476/why-true-false-is-capitalized-in-python 5 Why True/False is capitalized in Python? Joan Venge 2009-02-06T18:13:04Z 2009-11-01T04:38:33Z <p>All members are camel case, right? Why True/False but not true/false, which is more relaxed?</p> http://stackoverflow.com/questions/1609440/camel-case-method-names 0 camel case method names Jeremy 2009-10-22T19:30:20Z 2009-10-22T22:01:29Z <p>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?</p> http://stackoverflow.com/questions/323314/best-way-to-convert-pascal-case-to-a-sentence 4 Best way to convert Pascal Case to a sentence Garry Shutler 2008-11-27T09:30:35Z 2009-10-13T06:45:15Z <p>What is the best way to convert from Pascal Case (upper Camel Case) to a sentence.</p> <p>For example starting with</p> <pre><code>"AwaitingFeedback" </code></pre> <p>and converting that to</p> <pre><code>"Awaiting feedback" </code></pre> <p>C# preferable but I could convert it from Java or similar.</p> http://stackoverflow.com/questions/1509915/converting-camel-case-to-underscore-case-in-ruby 2 Converting camel case to underscore case in ruby Daniel Cukier 2009-10-02T14:36:59Z 2009-10-02T15:16:45Z <p>Is there any ready function which converts camel case Strings into underscore separated string? I want something like this</p> <p>"CamelCaseString".to_undescore</p> <p>to return "camel_case_string"</p> http://stackoverflow.com/questions/1437527/css-camelcase-vs-underscore 1 CSS: camelCase vs under_score Joe 2009-09-17T08:41:18Z 2009-10-01T17:16:52Z <p>There is much to read out there concerning this old question. Most languages seem to have their preferred style - and everythings ok with this.</p> <p>But what about this question of style in the CSS context? Both is correct and looks fine:</p> <pre><code>someContainerContent vs. some_container_content </code></pre> <p>What do you think?</p> <ul> <li>Which is your and what do you think is the community's preferred style?</li> <li>Do you see advantages in one or the other?</li> <li>Or just disadvantes?</li> </ul> <p>I'm currently writing java and ruby and so I'm switching between both all the time. In CSS I often catch myself by writing both, which is quite troublesome.</p> <p>Please provide my some help to decide which case to use and have my code awesome styled! ;)</p> http://stackoverflow.com/questions/1333282/does-identifier-casing-really-matter 0 Does identifier casing really matter? Kawa 2009-08-26T08:52:35Z 2009-08-26T15:51:32Z <p>FxCop thought me (basically, from memory) that functions, classes and properties should be written in MajorCamelCase, while private variables should be in minorCamelCase.</p> <p>I was talking about a reasonably popular project on IRC and quoted some code. One other guy, a fairly notorious troll who was also a half-op (gasp!) didn't seem to agree. Everything oughta be in the same casing, and he quite fervently favored MajorCamelCase, or even underscore_separation.</p> <p>Ofcourse, he was just a troll so I reckoned I'd just keep doing it the way I already did. Before I learned the above guidelines, I hardly even <em>had</em> a coherent naming style.</p> <p>He got me thinking, though -- does stuff like this really matter?</p> http://stackoverflow.com/questions/1267746/should-i-create-an-attribute-to-make-camel-cased-table-names-spaced 1 Should I create an attribute to make camel-cased table names, spaced? Irwin 2009-08-12T18:01:55Z 2009-08-18T16:05:27Z <p>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 space). Where should I be looking to get this done?</p> http://stackoverflow.com/questions/1176950/acronyms-in-camel-back 7 Acronyms in Camel Back Stroboskop 2009-07-24T10:56:12Z 2009-08-17T11:51:15Z <p>I often see Java class names like</p> <pre><code>XmlReader </code></pre> <p>instead of</p> <pre><code>XMLReader </code></pre> <p>My gut feeling is to completely upper case acronyms, but apparently many people think differently. Or maybe it's just because a lot of code generators are having trouble with acronyms...</p> <p>So i would like to hear the the public opinion. How do you capitalize your class names containing acronyms?</p> http://stackoverflow.com/questions/1175208/does-the-python-standard-library-have-function-to-convert-camelcase-to-camelcase 7 Does the python standard library have function to convert CamelCase to camel_case? Sridhar Ratnakumar 2009-07-24T00:22:02Z 2009-07-24T06:25:13Z <p>Example:</p> <pre><code>&gt;&gt;&gt; convert('CamelCase') camel_case </code></pre> http://stackoverflow.com/questions/1119141/convert-pascal-cased-setter-to-an-underscore-separated-variable-name 1 Convert Pascal-cased setter to an underscore-separated variable name JMTyler 2009-07-13T12:23:25Z 2009-07-13T13:43:36Z <p>This is not as simple as it seems. Most of you are likely thinking of the regex <code>/([A-Z])/_$1/</code> like I have found all over the Internet, but my particular situation is slightly more complicated. My source string contains more content that I <em>don't</em> want to have converted before a portion that I <em>do</em>.</p> <p>Consider a regular setter:</p> <pre><code>public function setUserId() </code></pre> <p>Of course, this method is missing a parameter. Perhaps I have many of these methods. I'd like to convert that line into</p> <pre><code>public function setUserId($user_id) </code></pre> <p>which is a rather simple thing to consider, but not so simple as I ponder it deeper. It's similar to what Andreas_D in <a href="http://stackoverflow.com/questions/853017/convert-single-char-in-string-to-lower-case">this thread</a>, but with the added challenge of trying to iteratively modify the variable name...</p> <p>It's probably going to be something obvious using regular expressions, but I'm still pretty new with them. Either way, I can't find a decent solution to this problem anywhere in my searches.</p> <p>Edit: of course, I realize that there are no capitals in "public function" which leave it safe. But, this search &amp; substitution will be running against blocks of code, and I want to ensure that the string I'm modified <em>begins</em> with "public function".</p> http://stackoverflow.com/questions/614930/how-can-i-cut1-camelcase-words 4 How can I cut(1) camelcase words? lindelof 2009-03-05T14:15:29Z 2009-03-06T09:55:08Z <p>Is there an easy way in Bash to split a camelcased word into its constituent words?</p> <p>For example, I want to split aCertainCamelCasedWord into 'a Certain Camel Cased Word' and be able to select those fields that interest me. This is trivially done with cut(1) when the word separator is the underscore, but how can I do this when the word is camelcased?</p> http://stackoverflow.com/questions/617746/does-resharper-4-1-support-both-camel-humps-and-normal-selection-modes 0 Does Resharper 4.1 support both Camel Humps and normal selection modes? Jonathan Parker 2009-03-06T05:25:00Z 2009-03-06T05:41:39Z <p>I've found the setting for Camel Humps in resharper:</p> <p>Resharper -> Options -> Editor -> Use CamelHumps</p> <p>The problem is that I would still like to be able to use the normal selection mode (i.e. the default behaviour for CTRL+Arrow and CTRL+SHIFT+Arrow) as well as the CamelHumps mode.</p> <p>For example consider this variable:</p> <p>private int MyVeryLongCamelCaseName;</p> <p>Now if I want to copy the entire variable then I want the VS default behaviour for CTRL+SHIFT+Left-Arrow which is to select the entire variable if the cursor is on the M.</p> <p>However if I want to change the name to say MyExtremelyLongCamelCaseName then I would like the CamelHumps behaviour provided by Resharper.</p> <p><strong>Is there any way to have both behaviours with different shortcuts?</strong></p> http://stackoverflow.com/questions/249470/javame-convert-string-to-camelcase 0 JavaME: Convert String to camelCase Ciryon 2008-10-30T07:16:06Z 2008-10-30T07:42:01Z <p>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 limited.</p> http://stackoverflow.com/questions/32241/algorithm-to-format-text-to-pascal-or-camel-casing 4 Algorithm to format text to Pascal or camel casing KiwiBastard 2008-08-28T13:23:07Z 2008-09-03T02:13:18Z <p><a href="http://beta.stackoverflow.com/questions/32149/does-anyone-have-a-good-proper-case-algorithm" rel="nofollow">Using this question</a> as the base is there an alogrithm or coding example to change some text to Pascal or Camel casing.</p> <p>For example:</p> <pre><code>mynameisfred </code></pre> <p>becomes</p> <pre><code>Camel: myNameIsFred Pascal: MyNameIsFred </code></pre>