This commit is contained in:
Your Name
2024-02-11 18:53:37 +07:00
parent 5ac191153b
commit 1513fec11a
2 changed files with 7 additions and 5 deletions

View File

@@ -1001,6 +1001,8 @@ end
function checkSimilarKey(dict::AbstractDict, key::AbstractString)
similar_k = nothing
key = replace(key, "_" => " ")
key = replace(key, "-" => " ")
for (k, v) in dict
if occursin(key, String(k))
similar_k = k