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 could convert it from Java or similar.
|
|
What is the best way to convert from Pascal Case (upper Camel Case) to a sentence. For example starting with
and converting that to
C# preferable but I could convert it from Java or similar.
|
||||||||||
|
|
|
An xquery solution that works for both UpperCamel and lowerCamel case: To output sentence case (only the first character of the first word is capitalized): declare function content:sentenceCase($string) { let $firstCharacter := substring($string, 1, 1) let $remainingCharacters := substring-after($string, $firstCharacter) return concat(upper-case($firstCharacter),lower-case(replace($remainingCharacters, '([A-Z])', ' $1'))) }; To output title case (first character of each word capitalized): declare function content:titleCase($string) { let $firstCharacter := substring($string, 1, 1) let $remainingCharacters := substring-after($string, $firstCharacter) return concat(upper-case($firstCharacter),replace($remainingCharacters, '([A-Z])', ' $1')) }; |
|||
|
|
|
|
Based on: Converting Pascal case to sentences using regular expression |
||
|
|
|
|
Mostly already answered here Small chage to the accepted answer, to convert the second and subsequent Capitalised letters to lower case, so change
to
|
||
|
|
|
|
Edit: didn't notice your casing requirements, modifed accordingly. You could use a matchevaluator to do the casing, but I think a substring is easier. You could also wrap it in a 2nd regex replace where you change the first character
to upper
|
|||
|
|
|
|
Here's a basic way of doing it that I came up with using Regex
It will also split off numbers which I didn't specify but would be useful. |
||
|
|
|
|
It is easy to do in JavaScript (or PHP, etc.) where you can define a function in the replace call:
Although I haven't solved the initial cap problem... :-) Now, for the Java solution:
Note the trick to split the sentence without loosing any character... |
|||
|
|
|
|
|
||||||
|
|
|
Here you go...
|
|||
|
|
I'd use a regex, inserting a space before each upper case character, then lowering all the string.
|
||||||||
|
|
|
Pseudo-code:
Better ways can perhaps be done by using regex or by string replacement routines (replace 'X' with ' x') |
||
|
|