System.ExtensionMethods.SplitCamelCase C# (CSharp) Метод

SplitCamelCase() публичный статический Метод

public static SplitCamelCase ( this @this ) : string
@this this
Результат 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");
    }