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
1 | local str = "Hey, whats up" |
2 |
3 | string.byte(str) |
STRING.DUMP
1 | local str = "Hey, what's up" |
2 |
3 | function func() |
4 | print ( "Hello how are you" ) |
5 | end |
6 |
7 | s = string.dump(func) |
8 | print (s) |
STRING.FIND
1 | local str = "Hey, like LUA?" |
2 |
3 | print (string.find(str, "LUA" )) |
Can you teach me the basics, and more strings? Would be appreciated : -)