Answers for "string to camel case c#"

C#
0

string to camel case c#

static string PascalCase(string s)
    {
        var x = CamelCase(s);
        return char.ToUpper(x[0]) + x.Substring(1);
    }
Posted by: Guest on November-21-2021
0

string to camel case c#

// This converts to camel case
    // Location_ID => locationId, and testLEFTSide => testLeftSide

    static string CamelCase(string s)
    {
        var x = s.Replace("_", "");
        if (x.Length == 0) return "null";
        x = Regex.Replace(x, "([A-Z])([A-Z]+)($|[A-Z])",
            m => m.Groups[1].Value + m.Groups[2].Value.ToLower() + m.Groups[3].Value);
        return char.ToLower(x[0]) + x.Substring(1);
    }
Posted by: Guest on November-21-2021
0

string to camel case c#

Char.ToLowerInvariant(name[0]) + name.Substring(1)
Posted by: Guest on November-21-2021

C# Answers by Framework

Browse Popular Code Answers by Language