Questions tagged as 'camel-case'

1
answer

What is the 'And' alternative in Portuguese for variable names and methods?

A question that always teases me when I'm in a Java project in which we use terms in Portuguese is to deal with method names or variables that represent somehow two things and need to mention both in the method / variable name. In English, and i...
asked by 17.05.2018 / 15:15
5
answers

How to separate "words" in CamelCase in C #?

How can I separate "words" into CamelCase using hyphen for example? With a string: string example = "CamelCase"; // CamelCase para: // Camel-Case and enumerator: enum Example { CamelCase } Example.CamelCase.ToString(); // CamelC...
asked by 24.02.2018 / 15:37
2
answers

How to convert CamelCase to snake_case in C #?

I would like to know how to convert a string with CamelCase to snake_case into C #. For example: EuAmoCsharp => eu_amo_csharp SnakeCase => snake_case     
asked by 04.07.2016 / 18:29
4
answers

CamelCase conversion function

I already have a function where it performs the conversion of strings to slug . Below I will give examples for facilitation in understanding my question. 3 examples before conversion: link para uma página link página...
asked by 08.11.2015 / 19:37
3
answers

How can I convert snake_case to camelCase (and vice versa) in Python?

How can I convert a string pythonic to snake_case in%% possible? Example: snake1 = 'minha_string_snake_case' # minhaStringSnakeCase snake2 = '_teste_string' # _TestString     
asked by 03.07.2015 / 13:53
1
answer

How to convert CamelCase to snake_case in PHP (in a simpler way)?

How do I convert a string with CamelCase to snake_case into PHP as simply as possible? Example: CamelCase => camel_case AjaxInfo => ajax_info     
asked by 04.07.2016 / 18:25
2
answers

How 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, Page Views, I'm using VUEJS.     
asked by 23.10.2018 / 16:03