Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

The empty text in this string isn't getting removed. Also, how to resolve this?

Asked by 7 years ago

I've been trying to solve this since yesterday, but I haven't been able to get any progress with this. What I'm trying to do here is remove the empty text on the left side of the string, this is what I got:

01local msg = "      ow"
02local function antispam()
03    local mLen = string.len(msg)
04    local b
05    local a = 1
06    while true do
07        b = string.sub(msg,a,a)
08        if b == " " then
09            print("'"..b.."' is empty. Place#"..a)
10            msg = string.sub(msg,2) -- This isn't doing anything for some reason, it keeps the text the same.
11            mLen = string.len(msg)
12        else
13            print("'"..b.."' is not empty. Place#"..a)
14            break
15        end
16        a = a + 1
17    end
18end
19antispam()
20-- This is supposed to remove the invisible text on the left side of the text, but it doesn't.

I appreciate the help if any comes, thanks!

1 answer

Log in to vote
1
Answered by
XAXA 1569 Moderation Voter
7 years ago
Edited 7 years ago

Lua's string library has a .match function, which might be helpful:

1local spaces = "           world another world    "
2local noSpaces = spaces:match("%s*(.*)")
3print(noSpaces) -- prints "world another world    "

Focus on this pattern string: "%s*(.*)"

%s* indicates that we're trying to match zero or more instances of whitespace characters in the string (tab, spaces, newlines)

.* indicates that we want to match zero or more of any character, and the parentheses () means that we specifically want to capture (return) whatever was matched by the pattern inside the parentheses.

Ad

Answer this question