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 any string into camel case

How can I convert a string into camel case using javascript regex? EquipmentClass name or Equipment className or equipment class …

javascript regex camelcasing
JSON Naming Convention (snake_case, camelCase or PascalCase)

Is there a standard on JSON naming?I see most examples using all lower case separated by underscore, aka snake_…

json camelcasing pascalcasing snakecasing
How can I return camelCase JSON serialized by JSON.NET from ASP.NET MVC controller methods?

My problem is that I wish to return camelCased (as opposed to the standard PascalCase) JSON data via ActionResults from …

asp.net-mvc json json.net camelcasing
Convert a String to Modified Camel Case in Java or Title Case as is otherwise called

I want to convert any string to modified Camel case or Title case using some predefined libraries than writing my …

java regex string function camelcasing
Convert String To camelCase from TitleCase C#

I have a string that I converted to a TextInfo.ToTitleCase and removed the underscores and joined the string together. …

c# camelcasing tolower title-case
Acronyms in CamelCase

I have a doubt about CamelCase. Suppose you have this acronym: Unesco = United Nations Educational, Scientific and Cultural Organization. You …

coding-style camelcasing acronym
Convert hyphens to camel case (camelCase)

With regex (i assume) or some other method, how can i convert things like: marker-image or my-example-setting to markerImage or …

javascript regex camelcasing
Convert JSON style properties names to Java CamelCase names with GSON

I'm using GSON to convert JSON data I get to a Java object. It works pretty well in all my …

java json gson camelcasing
RegEx to split camelCase or TitleCase (advanced)

I found a brilliant RegEx to extract the part of a camelCase or TitleCase expression. (?<!^)(?=[A-Z]) It works as …

java regex camelcasing title-case