我正在从服务器中检索一个英文国家名称。例如,“西班牙”
我想做的是,假设国家名称要用英文写,得到国家代码。
我应该怎么办?我发现从国家代码中获取国家名称非常容易,但我不知道如何进行相反的操作。
非常感谢。
我正在从服务器中检索一个英文国家名称。例如,“西班牙”
我想做的是,假设国家名称要用英文写,得到国家代码。
我应该怎么办?我发现从国家代码中获取国家名称非常容易,但我不知道如何进行相反的操作。
非常感谢。
杰夫的回答在这里有所帮助,略有补充。
NSArray *countryCodes = [NSLocale ISOCountryCodes];
NSMutableArray *countries = [NSMutableArray arrayWithCapacity:[countryCodes count]];
for (NSString *countryCode in countryCodes)
{
NSString *identifier = [NSLocale localeIdentifierFromComponents: [NSDictionary dictionaryWithObject: countryCode forKey: NSLocaleCountryCode]];
NSString *country = [[[NSLocale alloc] initWithLocaleIdentifier:@"en_UK"] displayNameForKey: NSLocaleIdentifier value: identifier];
[countries addObject: country];
}
NSDictionary *codeForCountryDictionary = [[NSDictionary alloc] initWithObjects:countryCodes forKeys:countries];
现在使用您需要代码的国家/地区名称浏览“codeForCountryDictionary”,例如,
NSLog(@"%@",[codeForCountryDictionary objectForKey:@"Spain"]);
将产生结果为“ES”,这是西班牙的 2 个字母国家代码。
@Daxesh Nagar解决方案的Swift 4更新版本:
private func locale(for fullCountryName : String) -> String {
var locales : String = ""
for localeCode in NSLocale.isoCountryCodes {
let identifier = NSLocale(localeIdentifier: localeCode)
let countryName = identifier.displayName(forKey: NSLocale.Key.countryCode, value: localeCode)
if fullCountryName.lowercased() == countryName?.lowercased() {
return localeCode as! String
}
}
return locales
}
对于此输入作为fullCountryName
“英国”
它将返回国家代码如下
“国标”
希望对大家有帮助!
在 Swift 中,您将使用此代码
extension NSLocale {
class func locales1(countryName1 : String) -> String {
var locales : String = ""
for localeCode in NSLocale.ISOCountryCodes() {
let countryName = NSLocale.systemLocale().displayNameForKey(NSLocaleCountryCode, value: localeCode)!
if countryName1.lowercaseString == countryName.lowercaseString {
return localeCode as! String
}
}
return locales
}
}
获取数据:
strP2countrycode = NSLocale.locales1("PASS_COUNTRYNAME")
使用 swift 3 (上面的一些答案缺少一块)
extension NSLocale {
class func locales1(countryName1 : String) -> String {
let locales : String = ""
for localeCode in NSLocale.isoCountryCodes {
let countryName = (Locale.current as NSLocale).displayName(forKey: .countryCode, value: localeCode)
if countryName1.lowercased() == countryName?.lowercased() {
return localeCode
}
}
return locales
}
}
这是一个适用于 Swift 3 或更高版本的简单解决方案。根据您的操作系统版本,这支持大约 256 个国家/地区名称和代码。
extension Locale {
func isoCode(for countryName: String) -> String? {
return Locale.isoRegionCodes.first(where: { (code) -> Bool in
localizedString(forRegionCode: code)?.compare(countryName, options: [.caseInsensitive, .diacriticInsensitive]) == .orderedSame
})
}
}
正确使用它的诀窍是知道您希望转换为标准 2 字母 ISO 国家代码的国家名称的语言。
如果您知道国家/地区名称是英语,则必须在设置为英语的语言环境中使用它。en_US_POSIX
在这种情况下,最好使用特殊的语言环境。
let locale = Locale(identifier: "en_US_POSIX")
print(locale.isoCode(for: "Spain")) // result is `ES`
如果您有西班牙语的国家/地区名称,请务必使用西班牙语语言环境:
let locale = Locale(identifier: "es")
print(locale.isoCode(for: "España")) // result is `ES`
我的紧凑版本,包括仅与英文国家名称版本匹配的修复程序。
extension NSLocale
{
class func localeForCountry(countryName : String) -> String?
{
return NSLocale.ISOCountryCodes().first{self.countryNameFromLocaleCode($0 as! String) == countryName} as? String
}
private class func countryNameFromLocaleCode(localeCode : String) -> String
{
return NSLocale(localeIdentifier: "en_UK").displayNameForKey(NSLocaleCountryCode, value: localeCode) ?? ""
}
}
斯威夫特 3.0:
获取国家代码和国家名称作为 NS 字典-
let countryCodes: [AnyObject] = NSLocale.isoCountryCodes as [AnyObject]
let countries: NSMutableArray = NSMutableArray(capacity: countryCodes.count)
for countryCode in countryCodes {
let identifier: String = NSLocale.localeIdentifier(fromComponents: NSDictionary(object: countryCode, forKey: NSLocale.Key.countryCode as NSCopying) as! [String : String])
let country: String = NSLocale(localeIdentifier: "en_US").displayName(forKey: NSLocale.Key.identifier, value: identifier)!
countries.add(country)
}
let codeForCountryDictionary: [NSObject : AnyObject] = NSDictionary(objects: countryCodes, forKeys: countries as! [NSCopying]) as [NSObject : AnyObject]
print(codeForCountryDictionary)
斯威夫特 5
extension Locale {
func countryCode(by countryName: String) -> String? {
return Locale.isoRegionCodes.first(where: { code -> Bool in
guard let localizedCountryName = localizedString(forRegionCode: code) else {
return false
}
return localizedCountryName.lowercased() == countryName.lowercased()
})
}
}
要使用:
let locale = Locale(identifier: "en_US")
let countryCode = locale.countryCode(by: "Russia")
所以这个解决方案在 swift 4 中运行良好,取自上述评论......
extension NSLocale {
struct Locale {
let countryCode: String
let countryName: String
}
class func locales() -> [Locale] {
var locales = [Locale]()
for localeCode in NSLocale.isoCountryCodes {
let identifier = NSLocale(localeIdentifier: localeCode)
let countryName = identifier.displayName(forKey: NSLocale.Key.countryCode, value: localeCode)!
let countryCode = localeCode
let locale = Locale(countryCode: countryCode, countryName: countryName)
locales.append(locale)
}
return locales.sorted{$0.countryName.localizedCaseInsensitiveCompare($1.countryName) == ComparisonResult.orderedAscending}
}
}
请享用!