of     1   

SuperiorEternal
#138108909Wednesday, June 25, 2014 6:52 AM GMT

Is there an API for it?
lampwnage121
#138113491Wednesday, June 25, 2014 8:29 AM GMT

String = "ASDFSDF?@#$" print (#String)
Thane_1
#138152291Wednesday, June 25, 2014 6:56 PM GMT

Yep, just #String
SenseiWarrior
#138152489Wednesday, June 25, 2014 6:57 PM GMT

string.len(string) >print(string.len("hello")) 5
lostend
#138155053Wednesday, June 25, 2014 7:15 PM GMT

local string_length=string.len('hi') local string_length=#'hi'
Thane_1
#138183309Wednesday, June 25, 2014 11:05 PM GMT

Guy's, I think we got it, lol
KnightmareXD
#138184212Wednesday, June 25, 2014 11:13 PM GMT

I would use the # operator over string.len.

    of     1