vote up 8 vote down star
5

Given the string "ThisStringHasNoSpacesButItDoesHaveCapitals" what is the best way to add spaces before the capital letters. So the end string would be "This String Has No Spaces But It Does Have Capitals"

Here is my attempt with a RegEx

System.Text.RegularExpressions.Regex.Replace(value, "[A-Z]", " $0")
flag

Do you have a particular complaint about the approach you've taken? That might help us improve upon your method. – Blair Conrad Nov 7 '08 at 16:36
If the regex works, then I'd stick with that. Regex is optamized for string manipulation. – Michael Meadows Nov 7 '08 at 16:39
I am just curious is there is a better or perhaps even a built in approach. I'd even be curious to see other approachs with other languages. – Bob Nov 7 '08 at 16:51

6 Answers

vote up 11 vote down check

The regexes will work fine (I even voted up Martin Browns answer), but they are expensive

This function

string AddSpacesToSentence(string text)
{
        if (string.IsNullOrEmpty(text))
           return "";
        StringBuilder newText = new StringBuilder(text.Length * 2);
        newText.Append(text[0]);
        for (int i = 1; i < text.Length; i++)
        {
            if (char.IsUpper(text[i]))
                newText.Append(' ');
            newText.Append(text[i]);
        }
        return newText.ToString();
}

Will do it 100,000 times in 2,968,750 ticks, the regex will take 25,000,000 ticks (and thats with the regex compiled).

It's better, for a given value of better (i.e. faster) however it's more code to maintain. "Better" is often compromise of competing requirements.

Hope this helps :)

link|flag
vote up 1 vote down

Hello, Binary Worrier, I have used your suggested code, and it is rather good, I have just one minor addition to it:

public static string AddSpacesToSentence(string text)
{
	if (string.IsNullOrEmpty(text))
		return "";
	StringBuilder newText = new StringBuilder(text.Length * 2);
	newText.Append(text[0]);
	for (int i = 1; i < text.Length; i++)
	{
		if (char.IsUpper(text[i]) && !char.IsUpper(text[i - 1]))
			newText.Append(' ');
		newText.Append(text[i]);
	}
	return newText.ToString();
}

I have added a condition !char.IsUpper(text[i - 1]) This has fixed a bug that would cause something like 'AverageNOX' to be turned into 'Average N O X', which is obviously wrong, as it should read 'Average NOX'.

Sadly this still has the bug that if you have the text 'FromAStart', you would get 'From AStart' out.

Any thoughts on fixing this?

link|flag
Maybe something like this would work: char.IsUpper(text[i]) && (char.IsLower(text[i - 1]) || (char.IsLower(text[i+1])) – Martin Brown Oct 22 at 16:52
vote up -1 vote down

Here's mine:


private string SplitCamelCase(string s) 
        { 
            Regex upperCaseRegex = new Regex(@"[A-Z]{1}[a-z]*"); 
            MatchCollection matches = upperCaseRegex.Matches(s); 
            List words = new List(); 
            foreach (Match match in matches) 
            { 
                words.Add(match.Value); 
            } 
            return String.Join(" ", words.ToArray()); 
        }
link|flag
Is that supposed to be C#? If so what namespace is List in? Do you mean ArrayList or List<string>? – Martin Brown Nov 8 '08 at 12:31
List<string> would be fine. Sorry about that. – Cory Foy Nov 9 '08 at 2:37
vote up 0 vote down

Jason - Your method retuns: his tring as o paces ut t oes ave apitals

link|flag
vote up 13 vote down

Your solution has an issue in that it puts a space before the first letter T so you get

" This String..." instead of "This String..."

To get around this look for the lower case letter preceding it as well and then insert the space in the middle:

newValue = Regex.Replace(value, "([a-z])([A-Z])", "$1 $2");

Edit 1:

If you use "(\p{Ll})(\p{Lu})" it will pick up accented characters as well.

Edit 2:

If your strings can contain acronyms you may want to use this:

newValue = Regex.Replace(value, "((?<=\p{Ll})\p{Lu})|((?!\A)\p{Lu}(?>\p{Ll}))", " $0");

So "DriveIsSCSICompatible" becomes "Drive Is SCSI Compatible"

link|flag
Nice catch, and a nice, simple solution. – Bill the Lizard Nov 7 '08 at 17:49
Great answer, thanks! – Bob Nov 8 '08 at 20:14
vote up 2 vote down

What you have works perfectly. Just remember to reassign value to the return value of this function.

value = System.Text.RegularExpressions.Regex.Replace(value, "[A-Z]", " $0");
link|flag

Your Answer

Get an OpenID
or

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