String
Last updated
Last updated
pretty2(String str)
String
Converts str
into a "pretty" string. Basically, it separates capitalized words with a space; so a string such as: "MyCoolString" would be "My Cool String"
key(String str)
String
Returns the Idstring key of str
(Basically Idstring(str):key())
prnt(...)
Prints all arguments (separated by a tab). This function doesn't require to do tostring(). Though it won't print nulls.
prntf(String s, ...)
Like prnt
but prints using string.format; so you can do things like prntf("My name is %s and I need a %s", "Dallas", "Medic bag")