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.

Should Python class filenames also be camelCased?

I know that classes in Python are typically cased using camelCase. Is it also the normal convention to have the …

python naming-conventions filenames camelcasing
Default camel case of property names in JSON serialization

I have a bunch of classes that will be serialized to JSON at some point and for the sake of …

c# json json.net camelcasing
Is using camelCase in CSS ids or classes ok or not?

Question is in the title. I'm used to using camelcase in development and, since there are crossovers with design, was …

css camelcasing
Regex for PascalCased words (aka camelCased with leading uppercase letter)

How do I find all PascalCased words in a document with a regular expression? If you don't know the word …

regex search camelcasing pascalcasing
How to convert column value to CamelCase with Oracle?

I need a way to convert a column value to CamelCase with Oracle 10g. I prefer to do it in-line …

sql oracle camelcasing
Disable check of camel case rule in eslint

I have a large JavaScript file with multiple eslint rule violations. I am trying to disable them and address them …

constants eslint camelcasing disable
Underscores or camelCase in PostgreSQL identifiers, when the programming language uses camelCase?

This has been bothering me for a while, and I can't arrive at a solution that feels right... Given an …

oop postgresql database-design naming-conventions camelcasing
MVC JsonResult camelCase serialization

I am trying to make my action return a JsonResult where all its properties are in camelCase. I have a …

asp.net-mvc json serialization camelcasing
What are the different kinds of cases?

I'm interested in the different kinds of identifier cases, and what people call them. Do you know of any additions …

case naming camelcasing
How to do CamelCase split in python

What I was trying to achieve, was something like this: >>> camel_case_split("CamelCaseXYZ") ['Camel', 'Case', 'XYZ'] &…

python regex camelcasing