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
|
|
Using this question as the base is there an alogrithm or coding example to change some text to Pascal or Camel casing. For example:
becomes
|
|||
|
|
|
|
I found a thread with a bunch of Perl guys arguing the toss on this question over at http://www.perlmonks.org/?node_id=336331. I hope this isn't too much of a non-answer to the question, but I would say you have a bit of a problem in that it would be a very open-ended algorithm which could have a lot of 'misses' as well as hits. For example, say you inputted:-
The output could be:-
Or:-
There's no way the algorithm would know which to prefer. You could add some extra code to specify that you'd prefer more common words, but again misses would occur (Peter Norvig wrote a very small spelling corrector over at http://norvig.com/spell-correct.html which might help algorithm-wise, I wrote a C# implementation at http://www.codegrunt.co.uk/?page=cSharp#norvigSpell if C#'s your language). I'd agree with Mark and say you'd be better off having an algorithm that takes a delimited input, i.e. this_is_a_test and converts that. That'd be simple to implement, i.e. in pseudocode:-
You could also replace my capitaliseFirstLetter() function with a proper case algorithm if you so wished. A C# implementation of the above described algorithm is as follows (complete console program with test harness):-
|
||
|
|
|
|
Childish I know, but how would you handle a string like sockettoopenisset? |
||
|
|
|
|
Short of trying to split it by words in a dictionary and treating all unrecognized character sequences as words... I can't think of anything efficient. |
||
|
|
|
|
The only way to do that would be to run each section of the word through a dictionary. "mynameisfred" is just an array of characters, splitting it up into my Name Is Fred means understanding what the joining of each of those characters means. You could do it easily if your input was separated in some way, e.g. "my name is fred" or "my_name_is_fred". |
||
|
|