Cultureinfo:如何仅获取语言代码

发布于 2024-11-01 14:21:50 字数 148 浏览 1 评论 0原文

我正在开发一个 Windows Phone 应用程序。

如何从 CultureInfo.CurrentCulture 获取语言代码?

我正在使用 CultureInfo.CurrentCulture.Name,并且得到“en-US”。我只需要 en.

I'm developing a Windows Phone app.

How can I get the language code from CultureInfo.CurrentCulture?

I'm using CultureInfo.CurrentCulture.Name and I getting 'en-US'. I only need en.

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

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

发布评论

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

评论(2

你的他你的她 2024-11-08 14:21:50

您是否尝试过使用 TwoLetterISOLanguageName属性?

Have you tried using the TwoLetterISOLanguageName property?

稳稳的幸福 2024-11-08 14:21:50

我不确定你到底想要实现什么目标。如果您想要的只是删除该区域,保留脚本区别(例如,如果您对 zh-Hans 感兴趣而不仅仅是 zh),那么您将需要使用 属性 ()。尽管这可能会返回旧版本(zh-CHS),因此您可能需要使用 IetfLanguageTag 属性来解决这个问题:

CultureInfo.CurrentCulture.Parent.IetfLanguageTag

en-US -> en
zh-CN -> zh-Hans
zh-TW -> zh-Hant

有时它仍然不会给你预期的答案,因为它只会支持支持的语言标签(但这不是任何与 TwoLetterISOLanguageName 属性不同):

az-Cyrl-AZ -> az
az-Latn-AZ -> az

并且似乎省略了一些链:

sr-Cyrl-BA -> (Invariant)

您可以检查不变性,然后返回 TwoLetterISOLanguageName 属性来解决该问题。

I'm not sure exactly what you are trying to achieve. If all you want is to remove the region, retaining the script distinction (if you are interested in zh-Hans for example and not just zh) then you will want to use the Parent property (). Though this can return legacy (zh-CHS) so you would want to use the IetfLanguageTag property to resolve that:

CultureInfo.CurrentCulture.Parent.IetfLanguageTag

en-US -> en
zh-CN -> zh-Hans
zh-TW -> zh-Hant

Sometimes it still isn't going to give you the expected answer since it will only language tags that are supported (but this isn't any different from the TwoLetterISOLanguageName property):

az-Cyrl-AZ -> az
az-Latn-AZ -> az

And it seems like some of the chains were omitted:

sr-Cyrl-BA -> (Invariant)

You can check for invariant and then return the TwoLetterISOLanguageName property to work around that.

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