Skip to content

Instantly share code, notes, and snippets.

@yukihir0
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save yukihir0/0112ae7bd7c3809b8417 to your computer and use it in GitHub Desktop.

Select an option

Save yukihir0/0112ae7bd7c3809b8417 to your computer and use it in GitHub Desktop.
GolangでMeCabを使う。
input := "すもももももももものうち"
result, err := mecab.Parse(input)
if err != nil {
panic(err)
}
for _, r := range result {
if r.Pos == "名詞" {
fmt.Println(r.Surface)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment