Update count.go

This commit is contained in:
kuoi 2022-01-15 10:56:29 +00:00 committed by GitHub
parent 3c32f0d5e3
commit f791976b84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ func fas_count(sum_nex []dna) []charset {
func fas_name(old_name string) string {
//needed to import string
compileRegex := regexp.MustCompile(`\w+\.`)
compileRegex := regexp.MustCompile(`(\w+)\.\w+`)
matchArr := compileRegex.FindStringSubmatch(old_name)
//needed to use the string get from the old string
new_name := matchArr[len(matchArr)-1]