System.ExtensionMethods.SplitCamelCase C# (CSharp) Méthode

SplitCamelCase() public static méthode

public static SplitCamelCase ( this @this ) : string
@this this
Résultat 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");
    }