Korean Sentence Analyser v0.2.3 SplitWord View Source
Helpful module when dealing with words that do not have proper spacing
Link to this section Summary
Functions
Find the words when a word contains multiple words without spacing in between
Link to this section Functions
Link to this function
find(word) View Source
Find the words when a word contains multiple words without spacing in between
iex> SplitWord.find("성열이냐")
[
%{"specific_type" => "Given name", "token" => "성열", "type" => "Substantive"},
%{"specific_type" => "Adjective", "token" => "이다", "type" => "Adjective"}
]