如何确定 CultureInfo 实例是否支持拉丁字符

发布于 2024-11-09 09:36:32 字数 167 浏览 0 评论 0原文

是否可以确定 CultureInfo 我正在使用的实例是否基于拉丁字符集?

Is it possible to determine if the CultureInfo instance that I am working with is based on a Latin character set or not?

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

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

发布评论

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

评论(2

歌枕肩 2024-11-16 09:36:32

我相信您可以使用CultureInfo.TextInfo.ANSICodePage
其中只有这么多(详细信息如下:http://msdn.microsoft.com/ en-us/goglobal/bb964654)。

您通常只需要检查它的值是 1252 还是 1250

I believe you can use the CultureInfo.TextInfo.ANSICodePage.
There are only so many of these (detailed here: http://msdn.microsoft.com/en-us/goglobal/bb964654).

You mostly just need to check that it's value is either 1252 or 1250

鯉魚旗 2024-11-16 09:36:32

不确定这是否足够,但是如何使用 CharUnicodeInfo.GetUnicodeCategory 方法

另请参阅脚本属性上的 Unicode UAX #24以及Unicode 字符到脚本分配表。

Not sure whether this is sufficient, but how about testing the CultureInfo.NativeName property for Latin characters using the CharUnicodeInfo.GetUnicodeCategory method

See also the Unicode UAX #24 on Script Properties and the Unicode Character to Script assignment table.

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