统一码和在 MVC URI 中使用国际 slug 名称?

发布于 2024-10-18 20:26:32 字数 834 浏览 2 评论 0原文

我正在查看 MSFT Azure 上的 MVC 模式和实践指南他们的代码类似于以下内容:

    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);
    } 

我必须做出哪些更改才能支持东方和非英语语言,并仍然保留 slug 的 SEO 优势?

I'm looking at the MSFT Patterns and Practices guide for MVC on Azure and they have code similar to the following:

    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);
    } 

What changes will I have to make to support Eastern and non-english languages, and still keep the SEO benefit of the slug?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文