Korean Sentence Analyser v0.3.1 KSA.Suffix View Source

Matches nouns that have a suffix attached For example: 4년째

Link to this section Summary

Functions

Find a noun when it has a Suffix ending

Link to this section Functions

Find a noun when it has a Suffix ending

iex> KSA.Suffix.find("지역내")
[
  %{
    "specific_type" => "Noun",
    "token" => "지역",
    "type" => "Noun"
  },
  %{
    "specific_type" => "Grammar",
    "token" => "내",
    "type" => "Grammar"
  }
]