local function GetStringWordNum(str) local fontSize = local lenInByte = #str local count = local i = while true do local curByte = string.byte(str, i) if i > lenInByte then break end local byteCount = and curByte < then byteCount = elseif curByte>…