Affecto.Identifiers.IBAN.Compress C# (CSharp) Method

Compress() private static method

private static Compress ( string iban ) : string
iban string
return string
        private static string Compress(string iban)
        {
            return (iban ?? string.Empty).Trim().Replace(" ", string.Empty).ToUpper();
        }