vote up 14 vote down star
6

How do I go from this string: "ThisIsMyCapsDelimitedString"

...to this string: "This Is My Caps Delimited String"

Fewest lines of code in VB.net is preferred but C# is also welcome.

Cheers!

flag

53% accept rate
What happens when you have to deal with "OldMacDonaldAndMrO'TooleWentToMcDonalds"? – Grant Wagner Sep 30 '08 at 22:09
It's only going to see limited use. I'll mainly just be using it to parse variable names such as ThisIsMySpecialVariable, – Matias Nino Sep 30 '08 at 22:18

10 Answers

vote up 20 vote down check

I made this a while ago. It matches each component of a CamelCase name.

/([A-Z]+(?=$|[A-Z][a-z])|[A-Z]?[a-z]+)/g

For example:

"SimpleHTTPServer" => ["Simple", "HTTP", "Server"]
"camelCase" => ["camel", "Case"]

To convert that to just insert spaces between the words:

Regex.Replace(s, "([a-z](?=[A-Z])|[A-Z](?=[A-Z][a-z]))", "$1 ")

Edit: Allowing initial lowercase letters, (i.e. "lowerCamelCase"), as Drew Noakes pointed out. The only change is a "?" after after the last "[A-Z]".

link|flag
CamelCase! That's what it was called! I love it! Thanks much! – Matias Nino Sep 30 '08 at 23:27
Actually camelCase has a leading lowercase letter. What you're referring to here is PascalCase. – Drew Noakes Feb 12 at 14:05
This has been corrected. – MizardX Feb 13 at 1:20
vote up 0 vote down

Great answer, MizardX! I tweaked it slightly to treat numerals as separate words, so that "AddressLine1" would become "Address Line 1" instead of "Address Line1":

Regex.Replace(s, "([a-z](?=[A-Z0-9])|[A-Z](?=[A-Z][a-z]))", "$1 ")
link|flag
vote up 1 vote down

For more variety, using plain old C# objects, the following produces the same output as @MizardX's excellent regular expression.

public string FromCamelCase(string camel)
{   // omitted checking camel for null
    StringBuilder sb = new StringBuilder();
    int upperCaseRun = 0;
    foreach (char c in camel)
    {   // append a space only if we're not at the start
        // and we're not already in an all caps string.
        if (char.IsUpper(c))
        {
            if (upperCaseRun == 0 && sb.Length != 0)
            {
                sb.Append(' ');
            }
            upperCaseRun++;
        }
        else if( char.IsLower(c) )
        {
            if (upperCaseRun > 1) //The first new word will also be capitalized.
            {
                sb.Insert(sb.Length - 1, ' ');
            }
            upperCaseRun = 0;
        }
        else
        {
            upperCaseRun = 0;
        }
        sb.Append(c);
    }

    return sb.ToString();
}
link|flag
Wow, that's ugly. Now I remember why I so dearly love regex! +1 for effort, though. ;) – Mark Brackett Oct 1 '08 at 3:22
lol .. totally ugly. regex is the way to go! – Robert Paulson Oct 1 '08 at 3:38
vote up 3 vote down

Just for a little variety... Here's an extension method that doesn't use a regex.

public static class CamelSpaceExtensions
{
    public static string SpaceCamelCase(this String input)
    {
        return new string(InsertSpacesBeforeCaps(input).ToArray());
    }

    private static IEnumerable<char> InsertSpacesBeforeCaps(IEnumerable<char> input)
    {
        foreach (char c in input)
        {
            if (char.IsUpper(c)) 
            { 
                yield return ' '; 
            }

            yield return c;
        }
    }
}
link|flag
vote up 1 vote down

Naive regex solution. Will not handle O'Conner, and adds a space at the start of the string as well.

s = "ThisIsMyCapsDelimitedString"
split = Regex.Replace(s, "[A-Z0-9]", " $&");
link|flag
I modded you up, but people generally take a smackdown better if it doesn't start with "naive". – MusiGenesis Sep 30 '08 at 22:42
I don't think that was a smackdown. In this context, naive usually means obvious or simple (i.e. not necessarily the best solution). There is no intention of insult. – Ferruccio Sep 30 '08 at 23:58
Yeah i meant simplistic – Geoff Oct 1 '08 at 1:26
vote up 6 vote down
Regex.Replace("ThisIsMyCapsDelimitedString", "(\\B[A-Z])", " $1")
link|flag
This is the best solution so far, but you need to use \\B to compile. Otherwise the compiler tries to treat the \B as an escape sequence. – Ferruccio Oct 1 '08 at 0:07
vote up 2 vote down
string s = "ThisIsMyCapsDelimitedString";
string t = Regex.Replace(s, "([A-Z])", " $1").Substring(1);
link|flag
I knew there would be an easy RegEx way... I've got to start using it more. – Max Schmeling Sep 30 '08 at 22:17
Not a regex guru but what happens with "HeresAWTFString"? – Nick Sep 30 '08 at 22:24
You get "Heres A W T F String" but that's exactly what Matias Nino asked for in the question. – Max Schmeling Sep 30 '08 at 22:31
vote up 5 vote down

Grant Wagner's excellent comment aside:

Dim s As String = RegularExpressions.Regex.Replace("ThisIsMyCapsDelimitedString", "([A-Z])", " $1")
link|flag
This leaves the result with a leading space: " This Is M... – Ferruccio Sep 30 '08 at 23:49
Good point... Please feel free to insert the .substring(), .trimstart(), .trim(), .remove(), etc. of your choice. :) – Pseudo Masochist Oct 3 '08 at 22:40
vote up -1 vote down

There you are. Works for English only, though.

string sToModify = "ThisIsMyCapsDelimitedString";
foreach (char chUpper in "ABCDEFGHIJKLMNOPQRSTUVWXYZ")
    sToModify = sToModify.Replace(String.Empty + chUpper, " " + chUpper);
sToModify = sToModify.Trim();
link|flag
you do realize that the string.Replace() totally ignores the string.Empty, don't you? – Mark Cidade Oct 1 '08 at 1:25
I think he's doing that to cast from char to string for the String.Replace(string, string) method. Obviously, a (string)chUpper would be better.... – Mark Brackett Oct 1 '08 at 3:24
Yep, I am doing it to cast the char to string. I am not sure (string)chUpper will be necessarily better, as ultimately it will be a new String instance allocated, so it's coming down to a constructor with parameter vs. default constructor and operator +. – Franci Penov Oct 1 '08 at 22:04
vote up 0 vote down

There's probably a more elegant solution, but this is what I come up with off the top of my head:

string myString = "ThisIsMyCapsDelimitedString";

for (int i = 1; i < myString.Length; i++)
{
     if (myString[i].ToString().ToUpper() == myString[i].ToString())
     {
          myString = myString.Insert(i, " ");
          i++;
     }
}
link|flag

Your Answer

Get an OpenID
or

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