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
0
votes
1 answer
php CodeIgniter framework try to use camelCase
im newbie in code igniter, im okay with the underscore convention, but i want to make my own libraries/extended core CI classes/custom function with camelCase convention.
i tried to change :
$config['subclass_prefix'] = 'My';
and the create…

mohur
- 1,785
- 4
- 16
- 25
0
votes
1 answer
Is a hyphen-split-word one word or mutiple words when CamelCasing it?
For example, BuiltinStuff or BuiltInStuff, which one is the correct class naming in Java?

Yang Bo
- 3,586
- 3
- 22
- 35
0
votes
1 answer
Parse JSON in Rails app that is camelCase
I am writing back-end to one app and my front-end developer forced me to use small-cap camelCase notation in JSON files that he is receiving (sic!). With sending him this is no problem because I use Jbuilder and there is an option to provide such…

Hauleth
- 22,873
- 4
- 61
- 112
0
votes
3 answers
Does identifier casing really matter?
FxCop thought me (basically, from memory) that functions, classes and properties should be written in MajorCamelCase, while private variables should be in minorCamelCase.
I was talking about a reasonably popular project on IRC and quoted some code.…

Kawa
- 1,478
- 1
- 15
- 20
0
votes
1 answer
Delete next camelcase word segment?
I frequently use the CtrlDelete command to delete the next word.
I was wondering, is there an equivalent keyboard combination in Eclipse to delete the next word in a camelcase word?

Jeff Axelrod
- 27,676
- 31
- 147
- 246
0
votes
1 answer
If Hungarian notation is mostly disparaged why is "UpperCamel for constructors vs lowerCamel for everything else" so popular?
It seems to be the case at least here on StackOverflow that Hungarian notation is most often considered to be a bad thing (though a minority are still in favour).
Now in the JavaScript world where I've been doing most of my coding for the past few…

hippietrail
- 15,848
- 18
- 99
- 158
-1
votes
2 answers
Find CamelCase in a text in Ruby
Possible Duplicate:
Regular expression to identify CamelCased words
I'm trying to detect CamelCase in a text. In Rubular, my regex works fine, but doesn't seems to work in my script.
My regex: http://rubular.com/r/fbeXAM69dX
My…

Simon
- 619
- 2
- 9
- 23
-1
votes
3 answers
I need help converting strings into camelCase with multiple "_" using loop
My code doesnt convert ex. dog_cat_dog into dogCatDog. The out put of my code is dogCat_dog. Trying to make a loop that doesn't stop at the first "_":
public String underscoreToCamel(String textToConvert) {
int index_=…

poop monkey
- 9
- 1
-1
votes
4 answers
Python - Convert string to CamelCase
I coded the following method to convert a string to Camel Case. However, it doesn't work when the string starts with a space.
def CamelCase(s):
newString = ''
newString += s[0].upper()
for k in range(1, len(s)):
if s[k] == ' ':
…

Igor Assis
- 11
- 1
-1
votes
1 answer
Why camelcase not installed?
i try to install camelcase in my python project.
pip install camelcase
but when i want to use the package, pylance give me this error:
Import "camelcase" could not be resolved Pylance (reportMissingImports)
and i tried to install camelcase again and…

Mohammad Nazari
- 137
- 1
- 12
-1
votes
2 answers
auto-checking java code for correct conventions and documentation
I am evaluating some students, and i am looking for an automated way to check for java conventions (camel casing) and documentation, is there any tool that does that? (preferably an online tool)

Mohamed Khamis
- 7,731
- 10
- 38
- 58
-1
votes
1 answer
Postgres split word with number and letters and amel case into two columns
I have a bunch of addresses that I need to split where the street number meets the city, and where its camelcase , ie:
255 S Broad St Ste 1600Goldberg Miller & Rubin PcPhiladelphia, PA, 19107-4534
You can see the number/string word is…

superdee
- 637
- 10
- 23
-1
votes
2 answers
Grouped string constants with camel case values
the goal is to have a grouped string constants with camel case values.
Ideally would be: public enum Attribute {Measures, MeasuresLevel}.
However its is not conform with the naming convention: constant names should be in uppercase.
The following…

partinis
- 139
- 12
-1
votes
4 answers
What is the best (cheapest) way to CamelCase complex input strings?
I have a large number of real-time incoming phrases which need to be transofrmed to alpha only - CamelCase by word and split point.
That's what I came up so far, but is there any cheaper and faster way to perform that task?
function…

mkungla
- 3,390
- 1
- 26
- 37
-1
votes
5 answers
What is meant by CamelCase in AngularJS?
I am a beginner in AngularJS. While reading an article about Custom Directive, I have seen a word 'CAMEL CASE'. What exactly it means?
This is the paragraph in which I have seen about CAMEL CASE:
While matching directives, Angular strips the…

hanxO
- 21
- 1
- 7