Вставьте пробелы между словами на жетоне в верблюде

Есть ли хорошая функция, чтобы превратить что-то вроде

Имя

к этому:

Имя?

6 ответов

Решение

Смотрите: .NET - Как вы можете разделить строку с заглавными буквами в массив?

Особенно:

Regex.Replace("ThisIsMyCapsDelimitedString", "(\\B[A-Z])", " $1")

Вот метод расширения, который я широко использовал для такого рода вещей

public static string SplitCamelCase( this string str )
{
    return Regex.Replace( 
        Regex.Replace( 
            str, 
            @"(\P{Ll})(\P{Ll}\p{Ll})", 
            "$1 $2" 
        ), 
        @"(\p{Ll})(\P{Ll})", 
        "$1 $2" 
    );
}

Он также обрабатывает строки, такие как "IBMMakeStuffAndSellIt", преобразуя их в "IBM Make Stuff And Sell It" (IIRC)

Самый простой способ:

var res = Regex.Replace("FirstName", "([A-Z])", " $1").Trim();

Вы можете использовать регулярное выражение:

Match    ([^^])([A-Z])
Replace  $1 $2

В коде:

String output = System.Text.RegularExpressions.Regex.Replace(
                  input,
                  "([^^])([A-Z])",
                  "$1 $2"
                );
    /// <summary>
    /// Parse the input string by placing a space between character case changes in the string
    /// </summary>
    /// <param name="strInput">The string to parse</param>
    /// <returns>The altered string</returns>
    public static string ParseByCase(string strInput)
    {
        // The altered string (with spaces between the case changes)
        string strOutput = "";

        // The index of the current character in the input string
        int intCurrentCharPos = 0;

        // The index of the last character in the input string
        int intLastCharPos = strInput.Length - 1;

        // for every character in the input string
        for (intCurrentCharPos = 0; intCurrentCharPos <= intLastCharPos; intCurrentCharPos++)
        {
            // Get the current character from the input string
            char chrCurrentInputChar = strInput[intCurrentCharPos];

            // At first, set previous character to the current character in the input string
            char chrPreviousInputChar = chrCurrentInputChar;

            // If this is not the first character in the input string
            if (intCurrentCharPos > 0)
            {
                // Get the previous character from the input string
                chrPreviousInputChar = strInput[intCurrentCharPos - 1];

            } // end if

            // Put a space before each upper case character if the previous character is lower case
            if (char.IsUpper(chrCurrentInputChar) == true && char.IsLower(chrPreviousInputChar) == true)
            {   
                // Add a space to the output string
                strOutput += " ";

            } // end if

            // Add the character from the input string to the output string
            strOutput += chrCurrentInputChar;

        } // next

        // Return the altered string
        return strOutput;

    } // end method

Regex:

http://weblogs.asp.net/jgalloway/archive/2005/09/27/426087.aspx http://stackru.com/questions/773303/splitting-camelcase

(вероятно, лучший - см. второй ответ) http://bytes.com/topic/c-sharp/answers/277768-regex-convert-camelcase-into-title-case

Чтобы преобразовать UpperCamelCase в Case Title, используйте следующую строку: Regex.Replace("UpperCamelCase",@"(\B[AZ])",@" $1");

Чтобы преобразовать как lowerCamelCase, так и UpperCamelCase в Title Case, используйте MatchEvaluator: открытая строка toTitleCase(Match m) { char c=m.Captures[0].Value[0]; return ((c>='a')&&(c<='z'))?Char.ToUpper(c).ToString():" "+c; } и немного измените свое регулярное выражение с помощью этой строки: Regex.Replace("UpperCamelCase or lowerCamelCase",@"(\b[az]|\B[AZ])",new MatchEvaluator(toTitleCase));

Другие вопросы по тегам