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

Strings - how do you detect the third word a player says?

Asked by 4 years ago

So I get that you can use string.sub to check if the player's first few letters are a prefix, and then you can use whatever they say after that as a player's name, or whatever.

But how exactly do you find out where the second word ends? I mean, let's say I wanted to make a command that would forcefield a player for a duration of time

:ff bluehawks 20

How would I actually get the third word? In this case it's a number, but what if it wasn't?

1
you could try doing (string:split(" "))[3] mybituploads 304 — 4y

2 answers

Log in to vote
2
Answered by
uhi_o 417 Moderation Voter
4 years ago
Edited 4 years ago

So you can use string.split method for strings that roblox has implemented.

Here's an example

01game.Players.PlayerAdded:Connect(function(plr)
02    plr.Chatted:Connect(function(msg)
03        local ThirdWord = msg:split(" ")[3] --Splitting the message which returns an array
04        --[[ Here is just extra because I feel like it
05        if typeof(ThirdWord) == "number" then --Checking if it's a number
06            --Do your thing
07        end
08        ]]
09    end)
10end)

If you are more visual let me show you something here

1local Message = ":ff uhi_o 40"
2local Words = Message:split(" ") --Returns an array like so {":ff", "uhi_o", "40"}
3local ThirdWord = Words[3] --Getting the third element
0
woah, i learned something new today raid6n 2196 — 4y
Ad
Log in to vote
1
Answered by 4 years ago

Just split the strings.

01local Message = ":ff bluehawks 20"
02 
03function Split(Command, Separator)
04    Seperator = Seperator or "%s"
05    Arguments = {}
06    for String in Command:gmatch("([^"..Seperator.."]+)") do
07        table.insert(Arguments, String)
08    end
09    return Arguments
10end
11 
12local Duration = Split(Message)[2]

See this: https://stackoverflow.com/questions/1426954/split-string-in-lua

0
you know what nevermind User#30567 0 — 4y

Answer this question