gpt4 book ai didi

c# - 国家代码列表 - C#

转载 作者:可可西里 更新时间:2023-11-01 08:37:30 27 4
gpt4 key购买 nike

我有一个字符串,我需要验证它是否是国家代码。文化是德国的。有什么方法可以调用以获取德国文化中的国家/地区代码列表,而无需自己输入所有 274 (?) 代码?

谢谢,泰迦。

最佳答案

当您说“国家代码”时,我假设您指的是 ISO 3166 中的两个字母代码.然后您可以使用 RegionInfo 构造函数来检查您的字符串是否是正确的代码。

string countryCode = "de";
try {
RegionInfo info = new RegionInfo(countryCode);
}
catch (ArgumentException argEx)
{
// The code was not a valid country code
}

正如您在问题中所述,您也可以检查它是否是德语的有效国家代码。然后您只需将特定的文化名称与国家/地区代码一起传递。

string language = "de";
string countryCode = "de";
try {
RegionInfo info = new RegionInfo(string.Format("{0}-{1}", language, countryCode));
}
catch (ArgumentException argEx)
{
// The code was not a valid country code for the specified language
}

关于c# - 国家代码列表 - C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1324048/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com