This commit is contained in:
narawat lamaiin
2025-01-06 13:12:11 +07:00
parent d8e1cbb94a
commit 6d7094028f

View File

@@ -284,7 +284,10 @@ function textToDict(text::String, keywords::Vector{String};
kw = []
# use for loop and detect_keyword function to get the exact variation of each keyword in the text then push to kw list
for keyword in keywords
push!(kw, detect_keyword(keyword, text))
detected = detect_keyword(keyword, text)
if detected !== nothing
push!(kw, detected)
end
end
od1, od2 =