Documentation
¶
Index ¶
- Variables
- func GetAmountCountryCodesMatched(s string) map[string]int
- func GetAmountCountryNamesMatched(s string) map[string]int
- func GetCountryByCountryCode(countryCode string) string
- func GetCountryCodeByCountry(country string) string
- func GetEncodedUTF8StringLower(s string) string
- func GetStringReplacedEmoji(s string) string
- type EmojiCountry
Constants ¶
This section is empty.
Variables ¶
var EmojiCountryData []EmojiCountry
EmojiCountryData is a slice of EmojiCountry
Functions ¶
func GetAmountCountryCodesMatched ¶
GetAmountCountryCodesMatched returns the countries matched represented by their country codes and the amount of each
func GetAmountCountryNamesMatched ¶
GetAmountCountryNamesMatched returns the names of the countries matched and the amount of each
func GetCountryByCountryCode ¶
GetCountryByCountryCode returns the country code by passing a string i.e. "fr" would return "france"
func GetCountryCodeByCountry ¶
GetCountryCodeByCountry returns the country code by passing a string i.e. "france" would return "fr"
func GetEncodedUTF8StringLower ¶
GetEncodedUTF8StringLower returns a string encoded in UTF8, i.e. the code points in lower case for using with the emoji_countries.csv file, which is in upper case, as the ones generated from several emoji libraries and used in other programming languages, in Go it's lower case.
func GetStringReplacedEmoji ¶
GetStringReplacedEmoji returns the original string replacing each emoji flag with their corresponding name, i.e. "Bonjour la 🇫🇷" would return "Bonjour la france"