Top "Camelcasing" questions

Camel case is a language-independent naming convention in which an identifier name will start with a lowercase letter and each additional word within the name will start uppercase, such as customerName, printInvoice, etc.

Converting nested hash keys from CamelCase to snake_case in Ruby

I'm trying to build an API wrapper gem, and having issues with converting hash keys to a more Rubyish format …

ruby hash key camelcasing hash-of-hashes
Why True/False is capitalized in Python?

All members are camel case, right? Why True/False but not true/false, which is more relaxed?

python camelcasing
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 …

naming-conventions camelcasing
How can I convert from underscores to camel case with a regex?

How can I convert names with underscores into camel case names as follows using a single Java/Perl regular expression …

regex pcre camelcasing case-conversion
How to navigate through the source code by parts in CamelCase (instead of whole words)?

I remember when I was using Eclipse that when holding CTRL and using left or right arrows Eclipse would navigate …

intellij-idea navigation pycharm camelcasing
TypeScript - Use PascalCasing or camelCasing for module names?

I'm wondering if I should use PascalCasing or camelCasing for my modules names, so far I've always used PascalCasing, i.…

typescript camelcasing pascalcasing
Javascript/jQuery: Split camelcase string and add hyphen rather than space

I would imagine this is a multiple part situation with regex, but how would you split a camelcase string at …

javascript regex split camelcasing
Convert CamelCase to under_score_case in php __autoload()

PHP manual suggests to autoload classes like function __autoload($class_name){ require_once("some_dir/".$class_name.".php"); } and this …

php autoload camelcasing
How to use Pascal Casing and Camel Casing for Short Acronyms in C#?

A short acronym is like ID or DB which has only 2 characters. How to name these when pascal casing (for …

c# coding-style naming-conventions camelcasing pascalcasing
Convert a Sentence to InitCap / camel Case / Proper Case

I have made this code. I want a small regexp for this. String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + …

javascript regex string camelcasing