Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gse dict lose efficacy when set an empty string #172

Open
CharlieWangKD opened this issue May 30, 2023 · 0 comments
Open

gse dict lose efficacy when set an empty string #172

CharlieWangKD opened this issue May 30, 2023 · 0 comments

Comments

@CharlieWangKD
Copy link

  • Gse version: v0.80.2
  • Go version: 1.19
func main() {
	seg := new(gse.Segmenter)
	seg.Dict = gse.NewDict()
	seg.Init()
	seg.AddToken("bj", 100, "n")
	fmt.Println(seg.Dictionary())
	fmt.Println(seg.Find("bj"))
	seg.AddToken("", 100, "n")
	fmt.Println(seg.Dictionary())
	fmt.Println(seg.Find("bj"))
}
// output:
// &{0xc000140000 1 [{[[98 106]] 100 n 0 []}] 100}
// 100 n true
// &{0xc000140000 1 [{[[98 106]] 100 n 0 []} {[] 100 n 0 []}] 200}
// 0  false

Description

The Find func of dict will lose efficacy when I set an empty string, the instance will be unable to cutting string.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant