#how do i cut a string
1 messages · Page 1 of 1 (latest)
Use string.sub()
So for this what you'd do is
local string = "Hello World"
string.sub(string, 1, 5)
id reccomend looking into the other string commands
they can help
ok
1 messages · Page 1 of 1 (latest)
how do i remove a part of a string for example
local string = "Hello World" but i want to remove the Hello part of string how do i do that?
Use string.sub()
So for this what you'd do is
local string = "Hello World"
string.sub(string, 1, 5)
id reccomend looking into the other string commands
they can help
ok