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.

learn more… | top users | synonyms (1)

0
votes
2answers
40 views

Opposite of jQuery.camelCase for CSS property names

jQuery.camelCase is used to convert dashed CSS properties to camelcased CSSOM(? or DOM?) properties. I'd like to do the opposite to dynamically create a CSS transition value. I don't want to use the ...
1
vote
1answer
33 views

how much camel caseing does CamelCasePropertyNamesContractResolver do?

using JSON.Net like this: JsonConvert.SerializeObject(someObject, Newtonsoft.Json.Formatting.None, new JsonSerializerSettings() { ...
0
votes
0answers
27 views

Solr:WordDelimiterFilterFactory for substrings of a camelcase word

I want to implement an Autocomplete-feature with Solr that work for source code identifiers in CamelCase. I use an EdgeNGramFilterFactory together with WordDelimiterFilterFactory to split CamelCase ...
2
votes
2answers
61 views

How should I write words with dash in camelCase?

For example: Meta-information metaInfornation, metainformation or metainfo? getMetainfo, getMetaInfo or getMetaInformation? what about objective-c style?
1
vote
1answer
50 views

Acronyms in CamelCase

I have a doubt about CamelCase. Supose you have this acronym: Unesco = United Nations Educational, Scientific and Cultural Organization. You should write: ...
0
votes
1answer
48 views

un-camelCase code not working

camelCase.el emacswiki has a function to un-camelcase. But It doesn't seem to work. I added that piece to the camelCase.el itself. But can't get it to work. What am I missing ? Did anyone else have ...
0
votes
1answer
68 views

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 : ...
-7
votes
2answers
158 views

Converting all underscore connected letters to uppercase in php [closed]

I have a string like "kp_o_zmq_k" and I need to covert it to "kpOZmqK" where I need to convert all underscore connected letters to uppercase. If I use preg_replace() function what could be the regular ...
1
vote
0answers
28 views

Proper capitalization when using __bases__ as a parameter

I have a long, but simple linear hierarchy. My Grandparent class needs to provide a common _something method for all children (however distant), but the thing is it needs to call a NextClass when it's ...
2
votes
1answer
201 views

Forcing Entity Framework generated classes to have Pascal casing and column names to have Camel casing

I have been working with Entity Framework 4 and SQL Server. The main problem I have found is that the table names in the database are all lower case and has underscore. This means that when I create ...
0
votes
1answer
43 views

A hyphen-split-word is one word or mutiple words when CamelCasing it?

For example, BuiltinStuff or BuiltInStuff, which one is the correct class naming in Java?
4
votes
1answer
680 views

MVC JsonResult CamelCase serialization

I am trying to make my action return a JsonResult where all its properties are in camelCase. I have a simply model: public class MyModel { public int SomeInteger { get; set; } public ...
0
votes
1answer
143 views

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 ...
0
votes
1answer
124 views

First letter capitalisation with multiple cursors in sublime

In sublime if I use cmd+D to select every occurrence of 'old' the selection is case insensitive so will match old and camelOld. But when I start typing the capitalisation is not respected so i will ...
2
votes
2answers
197 views

SQL to convert data from underscore-separated to CamelCase

I want to change underscore-separated strings: my_underscore_separated_string into CamelCase: MyUnderscoreSeparatedString With an SQL statement. What is the best way to do this conversion (in a ...
0
votes
0answers
45 views

express.js naming for query and form variables, can I use camlcase?

Confusing how to name the HTML Form and Query String's variables in Express.js project, Because javascript mostly use camelCase. if I name it underscore e.g. first_name. that mean in my javascript ...
0
votes
3answers
59 views

Generate verbose names from CamelCase

I'm trying to obtain verbose names from CamelCase strings in Python but have no idea how to approach the problem. This is the usecase: class MyClass(object): def verbose_name(self, camelcase): ...
6
votes
2answers
108 views

XMLSerializer keeps capitalizing items in collection

I need to export a collection of items in camel casing, for this I use a wrapper. The class itself: [XmlRoot("example")] public class Example { [XmlElement("exampleText")] public string ...
1
vote
1answer
118 views

Autoconverting Haskell code to camelcase [closed]

Is there any automated way of taking a body of Haskell code and converting it to use camelcase throughout, so that e.g. packed_forest is changed into packedForest?
1
vote
3answers
128 views

JS: regex CamelCase to Dashes

I've found this example to change CamelCase to Dashes. I've modified to code to change CamelCase to Sentencecase with spaces instead of dashes. It works fine but not for one word letters, like "i" ...
0
votes
2answers
145 views

Force automatic linq to sql classes to have pascal case properties?

My SQL database has column names in camel case. I'm using Linq to SQL with C#. Is there a way to force auto-generation of properties to be in pascal case? The camel case properties do not conform ...
-2
votes
1answer
107 views

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 ...
0
votes
1answer
63 views

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?
1
vote
3answers
142 views

Change forward-word/backward-word/kill-word for CamelCase Words in Emacs

I need to ability to navigate and edit parts of a camel cased word in Emacs. Functionality similar to camel humps in Intellij IDEA. For example I need Blah,Foo and Bar in the string BlahFooBar to be ...
0
votes
1answer
241 views

Convert camelcase table and column names to snake case in mysql

I tried googling and stackoverflowing this but couldn't find an answer, so I thought I would post one. Currently I inherited a legacy system (PHP/MySQL) where the table and column names are defined ...
13
votes
2answers
477 views

All our MySQL constraints have gone lowercase. What can cause this?

We have a camelCase naming convention on everything we do - from database tables to object properties, columns, database indexes and constraints. We have been working with these conventions for two ...
2
votes
4answers
181 views

How to use Pascal Casing and Camel Casing for Short Acronyms in C#?

A short acronym is like ID or DB which has only 2 characters. How to name these when pascal casing (for Property or Class names) and for Camel Casing (input prameters, arguments)? I know each ...
2
votes
1answer
1k views

How to convert column value to CamelCase with Oracle?

I need a way to convert a column value to CamelCase with Oracle 10g. I prefer to do it in-line with my select statement but if I have to use a function, that is OK too. I don't need to support ...
0
votes
1answer
242 views

If Hungarian notation is mostly disparaged why is “UpperCamel for constructors vs lowerCamel for everything else” so popular? [closed]

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 ...
5
votes
1answer
353 views

When syncing with an underscored backend, convert to CamelCase for use in JavaScript?

TL/DR: What's a good way to use an underscored naming convention serverside (RoR) with a camelCased naming convention clientside (JS) Server-side programming environments like Ruby on Rails use ...
4
votes
4answers
410 views

Is using camelCase in CSS ids or classes ok or not?

Question is in the title. I'm used to using camelcase in development and, since there are crossovers with design, was wondering if there are any technical reasons (regardless of opinions) against ...
3
votes
3answers
272 views

NHibernate: why field.camelcase?

Can someone tell me why in NHibernate mapping we can set access="field.camelcase", since we have access="field" and access="property"? EDIT: my question is "why we can do this", not "what does it ...
1
vote
1answer
512 views

Underscores or camelCase in PostgreSQL identifiers, when the programming language uses camelCase?

This has been bothering me for a while, and I can't arrive at a solution that feels right... Given an OO language in which the usual naming convention for object properties is camelCased, and an ...
0
votes
4answers
374 views

Regex to split Camel case - with Numbers

I want to split a camelCase name to individual names using regex, for performing a spell check. The split should be as follows: 1) extendedStructureForNUB --> extended, Structure, For, NUB 2) ...
3
votes
2answers
608 views

CamelCase to dash - two capitals next to each other

I'm using this function to convert CamelCase to dashed string: function camel2dashed($className) { return strtolower(preg_replace('/([^A-Z-])([A-Z])/', '$1-$2', $className)); } it kinda works ...
0
votes
1answer
990 views

Why is jQuery.camelCase() function not documented?

I searched the jQuery docs for "camelCase" and found nothing, which then led me on a chase for a different method name. Ultimately, I found it in the source code, but It cost me considerable time. So ...
0
votes
1answer
440 views

Zend Framework has problems with CamelCase Controller Names?

I have a Zend Framework application I've been working on my local machine, I've deploying it to a server but having .htaccess issues because some but not all routes fail with a "Page Not Found". Very ...
2
votes
3answers
554 views

Check for camel case in Python

I would like to check if a string is a camel case or not (boolean). I am inclined to use a regex but any other elegant solution would work. I wrote a simple regex ...
0
votes
2answers
433 views

underscore to camelCase RegEx

Our standards have changed and I want to do a 'find and replace' in say Dreamweaver(it allows for RegEx or we just got Visual Studio 2010, if it allows for searching by RegEx) for all the underscores ...
0
votes
1answer
140 views

I get no smart caret in Aptana Studio

I can't get word navigation on camelcase, underscore or periods in either Aptana or Titanium studios. Neither in PHP or Javascript. I do get it on hyphens though. The only smart caret option I see in ...
0
votes
2answers
215 views

How do I make Resharper respect capitals in camelcase code completion?

In ReSharper 5.1 running on VS 2008, I am trying to complete a method name using CamelHumps with the following code: public bool debugMode { get; private set; } public DebugWindow() { ...
5
votes
2answers
2k views

CamelCase breaking change in Json.NET version 4

I've just upgraded our Json.NET from version 3.5 Release 7 to 4.0 Release 8, and realized that seralization isn't done in the same way. When serializing an object that contains a standard Dictionary ...
0
votes
3answers
86 views

Inputs name and table fields name?

I usually use CamelCase for PHP coding, but when it come to input fields name and table (DB) fields name... what should I use? For example: <input type="text" name="streetName" /> <input ...
8
votes
1answer
2k views

How can I convert from underscores to camel case with a regex?

How can I convert names with underscores into camel case names as follows using a single Java/Perl regular expression search and replace? underscore_variable_name -> underscoreVariableName ...
1
vote
0answers
127 views

Textmate Snippet Regex to CamelCase a String

I need to create a TextMate snippet that will mirror an input and make it camel cased. The base snippet looks like this: <a href="#${1}" data-toggle="tab">${1:Tab 1}</a> Example input: ...
0
votes
1answer
125 views

How do I combine lowerCamelCase with all-caps abbreviations? (with style) [closed]

Let's assume OSCClient is a class and I want instances of a class to begin with a lower case letter: oSCClient = OSCClient() # ew! edit: I asked this question because of pep 8 which says: "When ...
2
votes
2answers
351 views

Converting from camelcase to _ in emacs

Is there an emacs function to convert a camel cased word in to underscore. Something like longVariableName M-x to-underscore long_variable_name
1
vote
1answer
266 views

camelCase with lowercase initial with names

Many coding standards recommend using camelCase with lowercase initial for variable and function names. What is the standard practice if the initial should be uppercase for "grammatical reasons", ...
3
votes
3answers
237 views

How do I enhance slugify to handle Camel Case?

I'd like to write a JavaScript function to slugify a string, with one more requirement: handle Camel Case. For example, thisIsCamelCase would become this-is-camel-case. How do I modify a function ...
3
votes
2answers
2k views

Javascript/jQuery: Split camelcase string and add hyphen rather than space

I would imagine this is a multiple part situation with regex, but how would you split a camelcase string at the capital letters while keeping the capital letters, and then adding a hyphen between each ...

1 2 3