main
Muhammad Daffa 2022-06-23 06:02:50 +07:00
parent 1cc1ec8961
commit f00978bd05
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ func Regex_api(contents string) string {
re := regexp.MustCompile(data[i].Regex)
if re.MatchString(contents) {
for _, str := range data[i].Name {
result += str
result += str + "\n"
}
}
}