Tagged Questions
The camelcasing tag has no wiki summary.
34
votes
9answers
4k views
Does the python standard library have function to convert CamelCase to camel_case?
Example:
>>> convert('CamelCase')
camel_case
23
votes
3answers
11k views
Converting camel case to underscore case in ruby
Is there any ready function which converts camel case Strings into underscore separated string?
I want something like this
"CamelCaseString".to_undescore
to return "camel_case_string"
18
votes
9answers
5k views
How do I convert CamelCase into human-readable names in Java?
I'd like to write a method that converts CamelCase into a human-readable name.
Here's the test case:
public void testSplitCamelCase() {
assertEquals("lowercase", splitCamelCase("lowercase"));
...
15
votes
10answers
5k views
Best way to convert Pascal Case to a sentence
What is the best way to convert from Pascal Case (upper Camel Case) to a sentence.
For example starting with
"AwaitingFeedback"
and converting that to
"Awaiting feedback"
C# preferable but I ...
12
votes
5answers
164 views
Naming convention for upper case abbreviations [closed]
Should a method that returns an XML stream be called
public Stream getXmlStream();
or instead
public Stream getXMLStream();
What's your opinion about that? What's considered best practice?
11
votes
5answers
1k views
Acronyms in Camel Back
I often see Java class names like
XmlReader
instead of
XMLReader
My gut feeling is to completely upper case acronyms, but apparently many people think differently. Or maybe it's just because a ...
9
votes
6answers
5k views
CSS: camelCase vs under_score
There is much to read out there concerning this old question. Most languages seem to have their preferred style - and everythings ok with this.
But what about this question of style in the CSS ...
8
votes
8answers
2k views
Why True/False is capitalized in Python?
All members are camel case, right? Why True/False but not true/false, which is more relaxed?
7
votes
3answers
225 views
RegEx to split camelCase or TitleCase (advanced)
I found a brilliant RegEx to extract the part of a camelCase or TitleCase expression.
(?<!^)(?=[A-Z])
It works as expected:
value -> value
camelValue -> camel / Value
TitleValue -> Title / ...
7
votes
10answers
652 views
For what reason do we have the lower_case_with_underscores naming convention?
Depending on your interpretation this may or may not be a rhetorical question, but it really baffles me. What sense does this convention make? I understand naming conventions don't necessarily have to ...
6
votes
4answers
2k views
How to format a string to camel case in XSLT?
I'm trying to format strings in XSLT that needs to be in camel case to be used appropriately for the application I'm working with.
For example:
this_text would become ThisText
this_long_text would ...
6
votes
4answers
698 views
How can I cut(1) camelcase words?
Is there an easy way in Bash to split a camelcased word into its constituent words?
For example, I want to split aCertainCamelCasedWord into 'a Certain Camel Cased Word' and be able to select those ...
5
votes
2answers
158 views
have jQuery ignore case in attribute/data names?
We're using HTML5's data-* attributes for some of our client side interaction set up. jQuery uses these to do its thing.
The catch is that the HTML coming in may vary. Obviously this is the problem ...
5
votes
2answers
329 views
Using ispell/aspell to spell check camelcased words
I need to spell check a large document containing many camelcased words. I want ispell or aspell to check if the individual words are spelled correctly.
So, in case of this word:
...
5
votes
4answers
876 views
How to convert CamelCase to camel_case?
If I had:
$string = "CamelCase";
I need
"camel_case"
Does PHP offer a function for this purpose?
5
votes
4answers
2k views
Algorithm to format text to Pascal or camel casing
Using this question as the base is there an alogrithm or coding example to change some text to Pascal or Camel casing.
For example:
mynameisfred
becomes
Camel: myNameIsFred
Pascal: MyNameIsFred
4
votes
1answer
66 views
RegEx and split camelCase
I want to get an array of all the words with capital letters that are included in the string. But only if the line begins with "set".
For example:
- string "setUserId", result array("User", "Id")
- ...
4
votes
1answer
255 views
CamelCase Expansion in Vim like Intellij Idea?
In Intellij Idea, there's a feature. Let's say I have used a variable myCamelCase somewhere in my code. Then if I type mCC and press Ctrl-Enter or some such key combination, it expands to myCamelCase. ...
4
votes
1answer
175 views
How to disable camel case selection in Eclipse
Is it possible to disable support for camel case in the Eclipse text editor? I want the next word key binding to select the next word, not the next fragment of a word.
I'd given up on eclipse because ...
4
votes
5answers
715 views
camelCase to underscore in vi(m)
If for some reason I want to selectively convert camelCase named things to being underscore separated in vim, how could I go about doing so?
Currently I've found that I can do a search /s[a-z][A-Z] ...
4
votes
5answers
2k views
Function to Make Pascal Case? (C#)
I need a function that will take a string and "pascal case" it. The only indicator that a new word starts is an underscore. Here are some example strings that need to be cleaned up:
price_old => ...
4
votes
6answers
237 views
Reformatting a Java String
I have a string that looks like this:
CALDARI_STARSHIP_ENGINEERING
and I need to edit it to look like
Caldari Starship Engineering
Unfortunately it's three in the morning and I cannot for the ...
4
votes
1answer
706 views
How can I configure vim so that movement commands will include underscores and CamelCase, but completion will ignore them?
For example, I currently have this:
set iskeyword-=_
This has the effect of making this work:
foo_bar
If cursor is on "f", pressing w moves cursor to the underscore. Pressing again moves to the ...
4
votes
3answers
307 views
Does Resharper 4.1 support both Camel Humps and normal selection modes?
I've found the setting for Camel Humps in resharper:
Resharper -> Options -> Editor -> Use CamelHumps
The problem is that I would still like to be able to use the normal selection mode (i.e. the ...
3
votes
3answers
86 views
Split CamelCase string except for acronyms
I have a list of words that need to be made human readable, such as FirstName to First Name, LastName to Last Name, and in some cases, acronyms like ARBs to remain as is. The latter was recently ...
3
votes
1answer
246 views
Utf8 correct regex for CamelCase (WikiWord) in perl
Here was a question about the CamelCase regex. With the combination of tchrist post i'm wondering what is the correct utf-8 CamelCase.
Starting with (brian d foy's) regex:
/
\b # start ...
3
votes
2answers
338 views
JavaScriptSerializer().Serialize : PacalCase to CamelCase
I have this javascript object
var options:
{
windowTitle : '....',
windowContentUrl : '....',
windowHeight : 380,
windowWidth : 480
}
And ...
3
votes
3answers
495 views
Displaying camel cased words as such with underscores in Eclipse
To me, reading long camel cased words can sometimes be a bit frustrating. For example:
aReallyLongCamelCasedMethodNameWhichIsTooSelfDescribing
Now, look at this version:
...
3
votes
4answers
2k views
Javascript Regex Camel Case - Sentence Case
How can I convert a string into camel case using javascript regex?
"EquipmentClass name" or "Equipment className" or "equipment class name" or "Equipment Class Name"
should all become: ...
3
votes
3answers
163 views
The correct case&format of variable and methods and for Python
So I know some languages have expected conventions.
PHP - underscore_case() [for the most part, lolo]
Java - camelCase()
C# - PascalCase()
etc.
What's the "Pythonic" naming convention? I know ...
3
votes
4answers
580 views
Regular expression to identify CamelCased words
How do I find all CamelCased words in a document with a regular expression? I'm only concerned with Upper camel case (i.e., camel cased words in which the first letter is capitalized).
2
votes
5answers
90 views
Why use camelCase in JavaScript?
I prefere using underscore instead of camelCase when I code in JavaScript.
I know that standard it using camelCase. But are there any disadvantages using underscore when naming stuff in JavaScript?
...
2
votes
3answers
43 views
Convert hyphen delimited string to camelCase?
For example:
abc-def-xyz to abcDefXyz
the-fooo to theFooo
etc.
What's the most efficient way to do this PHP?
Here's my take:
$parts = explode('-', $string);
$new_string = '';
foreach($parts as ...
2
votes
1answer
60 views
Camelcase, Underscore, etc. - how committed should you be?
Ok, I'm not trying to start a discussion on Camelcase vs Underscore here, it doesn't matter what you pick, just stick to your choice.
Rather, what I would like peoples opinion on, is how strict and ...
2
votes
4answers
240 views
Convert hyphens to camel case (camelCase)
With regex (i assume) or some other method, how can i convert things like:
marker-image or my-example-setting to markerImage or myExampleSetting.
I was thinking about just splitting by - then ...
2
votes
1answer
106 views
Can intelliJ navigate through the source code by camelCase instead of whole words?
I remember when I was using Eclipse that when holding CTRL and using left or right arrows Eclipse would navigate over the LongCamelCaseWrittenWord in several steps. One camel case word at time.
So it ...
2
votes
2answers
2k views
from camel case to underscore case conversion with php __autoload() function
Hey Guys,
PHP manual suggests to autoload classes like
function __autoload($class_name){
require_once("some_dir/".$class_name.".php");
}
and this appoach works fine to load class FooClass saved ...
2
votes
1answer
450 views
Convert Pascal-cased setter to an underscore-separated variable name
This is not as simple as it seems. Most of you are likely thinking of the regex /([A-Z])/_$1/ like I have found all over the Internet, but my particular situation is slightly more complicated. My ...
1
vote
3answers
36 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 ...
1
vote
2answers
36 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
vote
5answers
69 views
linux bash, camel case string to separate by dash
there is a way to do this:
MyDirectoryFileLine
to
my-directory-file-line
i found some ways to convert all to uppercase or lowercase, but not in that way; any ideas?
1
vote
3answers
140 views
How does one break a string down by capital letters with PHP?
I have a string: CamelCaseString
I want to explode(), split(), or some better method on capital letters to break this string down into the individual words.
What's the simplest way to do this?
--- ...
1
vote
2answers
30 views
What is the word/phrase to uncamelcase something
Ie. I have this "myFunction" to "my Function".
What is this called?
I'm not looking for a function to do this, but i'd like to know how to say it in conversation...
1
vote
3answers
947 views
PHP/MySQL naming conventions: camelCase vs under_score?
Quite often in PHP model code (at least in my own such code) there are direct references to MySQL table and field names, and since MySQL identifiers are for the most part case-insensitive I typically ...
1
vote
3answers
417 views
convert camel-lowercase to camel-upperCase in a java source code
I'm searching for an easy way to convert all variables and function names in a java source code from lower_case to upperCase format. There's really a lot of code, doing it manually isn't a good idea.
...
1
vote
1answer
255 views
Changing parts of CamelCase words in vim
Using vim, I find cw very handy for changing an entire word. Vim's separation of motion commands and action verbs makes for very powerful combinations. I just now had to change DefaultHandler to ...
1
vote
1answer
187 views
Zend Framework isn't looking for camel cased actions when using the router
Hi guys im having a spot of bother, hope someone can shed some light on this.
For some strange reason my route comes up saying action does not exist unless i change the camel casing to all lower case ...
1
vote
3answers
920 views
Why are my camel cased actions in Zend MVC attempting to call non-camelcased method names?
The Zend standard for action names is camelCase, yet if I create an action with camel casing, the request fails because it tries to call the method (action) without the camel casing!
Example:
I have ...
1
vote
3answers
217 views
force CamelCase on domain name in browser's address bar
Can I force a domain name to appear CamelCase in the browser's address bar? All browsers seem to force lowercase on the domain. Can this be accomplished with the .htaccess file... or some other means?
...
1
vote
2answers
676 views
T4 FieldName in camelCase without Underscore?
I'm using T4 to generate some class definitions and find that I'm getting an underscore in front of my field names.
I have set
code.CamelCaseFields = true;
just to be safe (even though I ...