update xml
This commit is contained in:
parent
6bef3f45cd
commit
cf6a5bf016
10
xml.go
10
xml.go
@ -66,12 +66,10 @@ func LoadCountryFile() Countries {
|
|||||||
|
|
||||||
func GetDXCC(dxCall string, Countries Countries) string {
|
func GetDXCC(dxCall string, Countries Countries) string {
|
||||||
for i := 0; i < len(Countries.Countries); i++ {
|
for i := 0; i < len(Countries.Countries); i++ {
|
||||||
for j := 0; j < len(Countries.Countries[i].CountryPrefixList.CountryPrefixList); j++ {
|
regExp := regexp.MustCompile(Countries.Countries[i].CountryPrefixList.CountryPrefixList[len(Countries.Countries[i].CountryPrefixList.CountryPrefixList)-1].PrefixList)
|
||||||
regExp := regexp.MustCompile(Countries.Countries[i].CountryPrefixList.CountryPrefixList[j].PrefixList)
|
match := regExp.FindStringSubmatch(dxCall)
|
||||||
match := regExp.FindStringSubmatch(dxCall)
|
if len(match) != 0 {
|
||||||
if len(match) != 0 {
|
return Countries.Countries[i].Dxcc
|
||||||
return Countries.Countries[i].Dxcc
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ""
|
return ""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user