我正在查看 Azure 上 MVC 的 MSFT模式和实践指南,它们的代码类似于以下内容:
public static string GenerateSlug(this string txt, int maxLength)
{
string str = RemoveAccent(txt).ToLower();
str = Regex.Replace(str, @"[^a-z0-9\s-]", string.Empty);
str = Regex.Replace(str, @"\s+", " ").Trim();
str = str.Substring(0, str.Length <= maxLength ? str.Length : maxLength).Trim();
str = Regex.Replace(str, @"\s", "-");
return str;
}
public static string RemoveAccent(this string txt)
{
byte[] bytes = System.Text.Encoding.GetEncoding("Cyrillic").GetBytes(txt);
return System.Text.Encoding.ASCII.GetString(bytes);
}
我必须做出哪些改变来支持东方语言和非英语语言,并且仍然保持 slu 的 SEO 优势?