n = string.len (str)
Returns the length of the string, including any imbedded zero (0x00) bytes. string.len ("hi there") --> 8 You can also use #string to find its length. #"hi there" --> 8
string.len ("hi there") --> 8
#"hi there" --> 8