Search code examples
stringluasplitlua-patterns

Compare string if there's at most one wrong character in Lua


I have a word and I want to check if it's equal to another word. If it's so then all is right, but it can be right also if there's one (and only one) wrong character.

local word = "table"
local word2 = "toble"
if word == word2 then
  print("Ok")
end

How can I split word2?


Solution

  • You can compare the string's length first, if they are equal then compare from the first character, if there's one character that is different, then the rest must be the same for your condition to be true:

    function my_compare(w1, w2)
        if w1:len() ~= w2:len() then
            return false
        end
        for i = 1, w1:len() do
            if w1:sub(i, i) ~= w2:sub(i, i) then
                return w1:sub(i + 1) == w2:sub(i + 1)
            end
        end
        return true
    end