vote up 4 vote down star

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.

flag

79% accept rate
18 mins to answer your own question? – Gilles Nov 27 '08 at 9:51
Yeah, I hadn't worked out the solution before I asked it, plus phone calls. – Garry Shutler Nov 27 '08 at 9:52
Just thought it was a reasonable question to put on SO when I came across the problem. – Garry Shutler Nov 27 '08 at 9:53
Camel case is awaitingFeedback and not AwaitingFeedback (Pascal Case). Also, what you want to do is not completely possible. How about disableGPS? Is there a solution general enough to handle these cases? – kgiannakakis Nov 27 '08 at 10:08
PS.: I just gave a Java solution as update of my message... – PhiLho Nov 27 '08 at 10:12
show 1 more comment

10 Answers

vote up 0 vote down

Pseudo-code:

NewString = "";
Loop through every char of the string (skip the first one)
   If char is upper-case ('A'-'Z')
     NewString = NewString + ' ' + lowercase(char)
   Else
     NewString = NewString + char

Better ways can perhaps be done by using regex or by string replacement routines (replace 'X' with ' x')

link|flag
vote up 0 vote down

I'd use a regex, inserting a space before each upper case character, then lowering all the string.

    string spacedString = System.Text.RegularExpressions.Regex.Replace(yourString, "\B([A-Z])", " \k");
    spacedString = spacedString.ToLower();
link|flag
I don't know C# but I don't think escapes like \s are legal in the replace section: how the language will know if it must insert space, tab or something else? :-) – PhiLho Nov 27 '08 at 9:46
You're right, should be simpler to replace it with a clear " ". – Antoine Nov 27 '08 at 9:49
The only thing I'd say is that will produce "awaiting feedback" – Garry Shutler Nov 27 '08 at 9:59
Well you sure have to remove the first space and upper the first character. Maybe add a "\B" before the pattern so as not to match the first char. – Antoine Nov 27 '08 at 10:09
vote up 6 vote down

Here you go...

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace CamelCaseToString
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(CamelCaseToString("ThisIsYourMasterCallingYou"));   
        }

        private static string CamelCaseToString(string str)
        {
            if (str == null || str.Length == 0)
                return null;

            StringBuilder retVal = new StringBuilder(32);

            retVal.Append(char.ToUpper(str[0]));
            for (int i = 1; i < str.Length; i++ )
            {
                if (char.IsLower(str[i]))
                {
                    retVal.Append(str[i]);
                }
                else
                {
                    retVal.Append(" ");
                    retVal.Append(char.ToLower(str[i]));
                }
            }

            return retVal.ToString();
        }
    }
}
link|flag
You should ToUpper() the first character, otherwise your routine doesn't work with true camelCase, only PascalCase – Ch00k Nov 27 '08 at 10:07
Yup nice catch, I knew something was amiss (but couldn't put my finger on it) when he said "AwaitingFeedback" is camel case! – SDX2000 Nov 27 '08 at 10:18
vote up -4 vote down

http://letmegooglethatforyou.com/?q=regex+camel+case

top link

link|flag
I think you'll find that doesn't do what I want. I also apologise for asking a question that, though basic, I thought would be useful to have on SO. Therefore, I asked it whilst working out a solution. – Garry Shutler Nov 27 '08 at 9:50
Perfectly ok to ask such a question I believe. Also, what will be the top link in google for this in one year? next week? – Mario Ortegón Nov 27 '08 at 10:14
It's an easy thing to search for with a standard search engine turning up plenty of prior art, regardless of whether or not the top link stays live. I wonder if the questioner would have needed to pose the question after a cursory search. Apologies for seeming grumpy! – spender Nov 27 '08 at 13:44
vote up 0 vote down

It is easy to do in JavaScript (or PHP, etc.) where you can define a function in the replace call:

var camel = "AwaitingFeedbackDearMaster";
var sentence = camel.replace(/([A-Z].)/g, function (c) { return ' ' + c.toLowerCase(); });
alert(sentence);

Although I haven't solved the initial cap problem... :-)

Now, for the Java solution:

String ToSentence(String camel)
{
  if (camel == null) return ""; // Or null...
  String[] words = camel.split("(?=[A-Z])");
  if (words == null) return "";
  if (words.length == 1) return words[0];
  StringBuilder sentence = new StringBuilder(camel.length());
  if (words[0].length() > 0) // Just in case of camelCase instead of CamelCase
  {
    sentence.append(words[0] + " " + words[1].toLowerCase());
  }
  else
  {
    sentence.append(words[1]);
  }
  for (int i = 2; i < words.length; i++)
  {
    sentence.append(" " + words[i].toLowerCase());
  }
  return sentence.toString();
}

System.out.println(ToSentence("AwaitingAFeedbackDearMaster"));
System.out.println(ToSentence(null));
System.out.println(ToSentence(""));
System.out.println(ToSentence("A"));
System.out.println(ToSentence("Aaagh!"));
System.out.println(ToSentence("stackoverflow"));
System.out.println(ToSentence("disableGPS"));
System.out.println(ToSentence("Ahh89Boo"));
System.out.println(ToSentence("ABC"));

Note the trick to split the sentence without loosing any character...

link|flag
vote up 2 vote down check

Here's a basic way of doing it that I came up with using Regex

public static string CamelCaseToSentence(this string value)
{
    var sb = new StringBuilder();
    var firstWord = true;

    foreach (var match in Regex.Matches(value, "([A-Z][a-z]+)|[0-9]+"))
    {
        if (firstWord)
        {
            sb.Append(match.ToString());
            firstWord = false;
        }
        else
        {
            sb.Append(" ");
            sb.Append(match.ToString().ToLower());
        }
    }

    return sb.ToString();
}

It will also split off numbers which I didn't specify but would be useful.

link|flag
vote up 0 vote down
string camel = "MyCamelCaseString";
string s = Regex.Replace(camel, "([A-Z])", " $1").ToLower().Trim();
Console.WriteLine(s.Substring(0,1).ToUpper() + s.Substring(1));

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

"^\w"

to upper

\U (i think)
link|flag
vote up 0 vote down

Mostly already answered here

Small chage to the accepted answer, to convert the second and subsequent Capitalised letters to lower case, so change

if (char.IsUpper(text[i]))                
    newText.Append(' ');            
newText.Append(text[i]);

to

if (char.IsUpper(text[i]))                
{
    newText.Append(' ');            
    newText.Append(char.ToLower(text[i]));
}
else
   newText.Append(text[i]);
link|flag
vote up 0 vote down
public static string ToSentenceCase(this string str)
{
    return Regex.Replace(str, "[a-z][A-Z]", m => m.Value[0] + " " + char.ToLower(m.Value[1]));
}

Based on: Converting Pascal case to sentences using regular expression

link|flag
vote up 0 vote down

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')) };

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.