Update count.go
This commit is contained in:
parent
c098cabced
commit
5675e8d78b
1 changed files with 1 additions and 1 deletions
2
count.go
2
count.go
|
@ -43,6 +43,6 @@ func fas_name(old_name string) string {
|
||||||
compileRegex := regexp.MustCompile("(\w+).\w+")
|
compileRegex := regexp.MustCompile("(\w+).\w+")
|
||||||
matchArr := compileRegex.FindStringSubmatch(old_name)
|
matchArr := compileRegex.FindStringSubmatch(old_name)
|
||||||
//needed to use the string get from the old string
|
//needed to use the string get from the old string
|
||||||
oldname := matchArr[len(matchArr)-1]
|
old_name := matchArr[len(matchArr)-1]
|
||||||
return old_name
|
return old_name
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue