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.
Questions tagged [camelcasing]
403 questions
-1
votes
2 answers
Date entry for first_name, lastname, and job title should be in camel case format even if the user enters all capitalized letters
So this is my code for the first_name. I have no clue why it does not work whenever I add an entry.
First Name:

Pam
- 73
- 1
- 9
-1
votes
1 answer
Splitting camelcase paths at uppercase letters in Linux
Working in a linux tcsh shell I'd like to echo a camelcase directory name, in lower case, with the separate parts of the name split up e.g in my PWD, iWantToSplitThisUp >> i want to split this up.
Thanks in advance

Stanza Alley
- 31
- 3
-2
votes
1 answer
Python 3.6 & MySQL 8.0.21 on MacOS: How to give table camelCase column names?
I have an API response that I would like to store in a MySQL table with column names that are identical to the names used in the response. In this case some of them are case sensitive, in particular camelCase. It seems MySQL is not accepting this.…

peter
- 756
- 5
- 16
-2
votes
2 answers
Capitalise part of a string in javascript
I am trying to split a string and make part of the string capitalised. however the first letter of the first word must stay lowercase. Ideally a regex that would split the string and know to capitalise the rest of that word, before splitting the…

codingWithNikki
- 37
- 7
-2
votes
2 answers
Having trouble running/installing camelcase
I am trying to run camelCase and install it the code I used for installing it is
C:\Users\Your Name\AppData\Local\Programs\Python\Python36-32\Scripts>pip install camelcase
which gave me the result of
C:\\Users\\Your…

Faith
- 1
- 1
-2
votes
1 answer
Regex pattern to match many combinations for a camel case string
I'm trying to create a regex pattern (one or more). For instance having SomeCamelStringToCombine it should match following substrings:
Some, Camel, String, To, Combine, SomeCamel, SomeCamelString,SomeCamelStringTo, SomeCamelStringToCombine,…

Mariano Italiano
- 301
- 2
- 8
-2
votes
3 answers
Java - Convert all words in a string but one to camelcase
I would like to convert a string to camelcase but avoid a word in that string.
public class camelTest
{
public static void main(String []args)
{
String test = "St. KiTTs aND Nevis";
System.out.println(toCamelCase(test));
}
public…
-2
votes
1 answer
Camel Case and case insensitive
I would like your opinion about using Upper or lowerCamelCase in a case insensitive and procedural language (Oracle PL/SQL).
Some guys wanna use this pattern in my job, but the programmers don't like the idea...
Oracle Forms and Reports do not…

user1819650
- 3
- 3
-3
votes
2 answers
lower CamelCase in Google Sheets
I was wondering if anyone had advice for creating a function that transformed text_with_spaces into lower camel case like textWithSpaces
I've found a related question on SO, that helps with regular camel case, but I'm not sure how to bring it to…

sfidf12489
- 121
- 4
-3
votes
1 answer
JavaScript space-separated string to camelCase
I've seen plenty of easy ways to convert camelCaseNames to camel Case Names, etc. but none on how to convert Sentence case names to sentenceCaseNames. Is there any easy way to do this in JS?

Ky -
- 30,724
- 51
- 192
- 308
-4
votes
5 answers
How do I transform a string into a PascalCase string with C#?
I have problem with my code. I don't know what am I doing wrong. I want for user to write some sentence and then program should split written sentence into single words where I use ToUpper on first chars of each word in array and then join the…

Kristy Maitz
- 7
- 6
-4
votes
2 answers
Converting all underscore connected letters to uppercase in php
I have a string like "kp_o_zmq_k" and I need to covert it to "kpOZmqK" where I need to convert all letters connected to the right of the underscore(o,z,k in this case) to uppercase.

Abhiraj
- 61
- 2
- 7
-8
votes
1 answer
Break Camel Case function in c#
I'm trying to solve this problem in codewars but i didn't know what is wrong about it. Error said :
System.ArgumentOutOfRangeException : Length cannot be less than zero.
Parameter name: Length
I'll appreciate any help
public static string…

Nidhal Baccouri
- 47
- 2
- 9