Add cocoapod support
All about name strings.
If you are like me and got tired of working with names like this
let fullName = "testing abducio medina" var components = fullName.components(separatedBy: " ") if components.count > 0 { let firstName = components.removeFirst() let lastName = components.joined(separator: " ") debugPrint(firstName) debugPrint(lastName) }
Then this small package is for you, because you can do it now like this
let name: HName = "Hady Nourallah" debugPrint(name.firstName) //Hady debugPrint(name.LastName) //Nourallah
let name: HName = "Hady Nourallah" let name = "Hady Nourallah" as HName let name = HName(stringLiteral: String)
For Objective-C: Unfortunately I still need to do some more work
HName *name = [[HName alloc] initWithStringLiteral:@"Hady Nourallah"]; name.firstName; //Hady
struct Person: Codable { let name: HName ... }
let name: HName = "Mr. Hady Nourallah Sr." //you can compare directly between HName and Strings print(name == "Mr. Hady Nourallah Sr.") //true print (name.firstName!) //Hady print (name.lastName!) //Nourallah print (name.abbrivation!) //HN print (name.fullName!) //Hady Nourallah print (name.namePrefix!) //Mr. print(name.formatted(.default)!) //Hady Nourallah print(name.formatted(.short)!) //Hady print(name.formatted(.medium)!) //Hady Nourallah print(name.formatted(.long)!) //Mr. Hady Nourallah Sr.
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
HName
All about name strings.
If you are like me and got tired of working with names like this
Then this small package is for you, because you can do it now like this
Usage
For Objective-C: Unfortunately I still need to do some more work