BetterCms.Module.Root.Mvc.Helpers.StringHelper.Transliterate C# (CSharp) Метод

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

public static Transliterate ( this text, bool allowunicodeCharacters = false ) : string
text this
allowunicodeCharacters bool
Результат string
        public static string Transliterate(this string text, bool allowunicodeCharacters = false)
        {
            if (string.IsNullOrEmpty(text))
            {
                return string.Empty;
            }

            var rgx = new Regex("[ .,_/\\\\+:;?!@]");
            text = rgx.Replace(text, "-").Trim();

            for (int i = 0; i < text.Length; i++)
            {
                if (text[i] != '-' && !char.IsLetterOrDigit(text[i]))
                {
                    text = text.Remove(i, 1);
                    i--;
                }
            }

            if (!allowunicodeCharacters)
            {
                text = ReplaceWithLatinSymbols(text);
            }

            while (text.Contains(TwoMinus))
            {
                text = text.Replace(TwoMinus, OneMinus);
            }

            text = text.Trim(new char[] { ' ', '-' }).ToLower();

            return text;
        }