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.
| |||||||||||||
feedback
|
Based on: Converting Pascal case to sentences using regular expression | |||||
feedback
|
|
Here you go...
| |||||||
feedback
|
|
This works for me:
| |||||||||
feedback
|
|
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. | |||
|
feedback
|
|
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... | ||||
|
feedback
|
|
Pseudo-code:
Better ways can perhaps be done by using regex or by string replacement routines (replace 'X' with ' x') | |||
|
feedback
|
|
I'd use a regex, inserting a space before each upper case character, then lowering all the string.
| |||||||||
feedback
|
|
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):
To output title case (first character of each word capitalized):
| ||||
|
feedback
|
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
| ||||
|
feedback
|
|
Mostly already answered here Small chage to the accepted answer, to convert the second and subsequent Capitalised letters to lower case, so change
to
| |||
|
feedback
|