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

Is anyone here willing to teach me about string manipulations?

Asked by 5 years ago

I just started scripting on ROBLOX last month which makes me a beginner, Is anyone willing to teach me the basic functions of string manipulations

Here are a few that i know

STRING.BYTE

1local str = "Hey, whats up"
2 
3string.byte(str)

STRING.DUMP

1local str = "Hey, what's up"
2 
3function func()
4    print("Hello how are you")
5end
6 
7s = string.dump(func)
8print(s)

STRING.FIND

1local str = "Hey, like LUA?"
2 
3print(string.find(str,"LUA"))

Can you teach me the basics, and more strings? Would be appreciated : -)

Answer this question