为了账号安全,请及时绑定邮箱和手机立即绑定

在 FindAllString 正则表达式中排除重复项

在 FindAllString 正则表达式中排除重复项

Go
LEATH 2022-07-25 11:02:41
我有下面的代码,即读取txt根目录中的所有文件,根据给定扫描它们以查找特定单词regex并报告regex在每个文件中找到的单词。我遇到的问题是,如果一个 wod 被提及的次数超过一个(即在文件中的不同位置),它将尽可能多地被报告,我需要将其重新定位为唯一的,因此不包括重复项。例如在txt文件中:I'm an engineer not a doctorreally, I'm not a doctor这个词doctor被报告了两次,而我需要让它独一无二,即。我知道它在文件中就足够了。我的代码是:package mainimport (    "fmt"    "io/ioutil"    "log"    "path/filepath"    "regexp"    "strings")func main() {    files, err := ioutil.ReadDir(".")    if err != nil {        log.Fatal(err)    }    p := []string{}    p = append(p, "engineer")    p = append(p, "doctor")    p = append(p, "chemical (permit)")    skills := strings.Join(p, "|")    fmt.Println(skills)    re := regexp.MustCompile(`(?i)` + skills)    for _, file := range files {        if strings.ToLower(filepath.Ext(file.Name())) == ".txt" {            fmt.Println(file.Name())            b, err := ioutil.ReadFile(file.Name()) // just pass the file name            if err != nil {                fmt.Print(err)            }            //fmt.Println(b) // print the content as 'bytes'            str := string(b) // convert content to a 'string'            matches := re.FindAllString(str, -1)            fmt.Println(matches, len(matches))            for _, j := range matches {                fmt.Println(j)            }        }    }}
查看完整描述

1 回答

?
江户川乱折腾

TA贡献1851条经验 获得超5个赞

您可以使用以下方式将匹配项从 a[]string转换为 a Set:https ://godoc.org/github.com/golang-collections/collections/set


像这样:


package main


import (

    "fmt"

    "io/ioutil"

    "log"

    "path/filepath"

    "regexp"

    "strings"

    "github.com/golang-collections/collections/set"

)


func main() {

    files, err := ioutil.ReadDir(".")

    if err != nil {

        log.Fatal(err)

    }


    p := []string{}

    p = append(p, "engineer")

    p = append(p, "doctor")

    p = append(p, "chemical (permit)")

    skills := strings.Join(p, "|")


    fmt.Println(skills)

    re := regexp.MustCompile(`(?i)` + skills)


    for _, file := range files {

        if strings.ToLower(filepath.Ext(file.Name())) == ".txt" {

            fmt.Println(file.Name())


            b, err := ioutil.ReadFile(file.Name()) // just pass the file name

            if err != nil {

                fmt.Print(err)

            }

            //fmt.Println(b) // print the content as 'bytes'


            str := string(b) // convert content to a 'string'

            matches := re.FindAllString(str, -1)

            matchesSet := set.New(matches...)

            matchesSet.Do(func print(s string) {

              fmt.Println(s)

            }

            // fmt.Println(matches, len(matches))


            // for _, j := range matches {

            //     fmt.Println(j)

            // }

        }

    }

}


查看完整回答
反对 回复 2022-07-25
  • 1 回答
  • 0 关注
  • 171 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信