Most voted "camel-case" questions
Camelcase is the English term for the practice of writing compound words or phrases, where each word is started with uppercase and joined without spaces. It is a widely used standard in several programming languages, such as Java, C#, Ruby, PHP and Python, mainly in the definitions of Classes and Objects. If the question is not about "Camelcase", do not use this tag, even if you are using "Camelcase" in your project.
Learn more…9 questions
Sort by count of
-
15
votes1
answer346
viewsWhat is the alternative of 'And' in Portuguese for variable names and methods?
One question that always bothers me when I’m in a Java project where we use Portuguese terms is dealing with method names or variables that represent, somehow, two things and I need to mention both…
-
13
votes5
answers453
viewsHow to separate "words" in Camelcase in C#?
How can I separate "words" into Camelcase using hyphen for example? String: string example = "CamelCase"; // CamelCase para: // Camel-Case and enumerator: enum Example { CamelCase }…
-
6
votes2
answers454
viewsHow to write acronyms in camelCase?
How should I treat acronyms in camelCase? should I leave them fully uppercase or just the first letter? What would the variable look like algumaCoisaSiglaAleatoria? Or algumaCoisaSIGLAAleatoria?…
-
5
votes4
answers1466
viewsCamelcase conversion function
I already have a function where it performs the conversion of strings for Slug. Below I will give examples for facilitation in understanding my question. 3 examples before conversion: link para uma…
-
4
votes3
answers476
viewsHow do I convert snake_case to camelCase (and vice versa) in Python?
How could I, in any way pythonic possible, convert a string snake_case for camelCase ? Example: snake1 = 'minha_string_snake_case' # minhaStringSnakeCase snake2 = '_teste_string' # _TestString…
-
4
votes2
answers458
viewsHow to convert Camelcase to snake_case in C#?
I would like to know how to convert a string with Camelcase for snake_case in C#. For example: EuAmoCsharp => eu_amo_csharp SnakeCase => snake_case…
-
4
votes1
answer63
viewsWhat is the code convention name for variables that use _?
If variables declared as such: var camelCase = ""; follow the pattern camelCase, what is the default name for variables that use the _, as below? ruby_var = "a questão vale 10 pontos =)"…
-
1
votes1
answer739
viewsHow to convert Camelcase to snake_case in PHP (simply)?
How do I convert a string with Camelcase for snake_case in PHP as simply as possible? Example: CamelCase => camel_case AjaxInfo => ajax_info…
-
-2
votes2
answers335
viewsHow to insert space in Camelcase string?
I’m looking for a way to separate string from an array object, coming from an API, for example: Pageviews, get Page Views, I’m using VUEJS.