System.ExtensionMethods.SplitCamelCase C# (CSharp) Method

SplitCamelCase() public static method

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