of     1   

gaberocksall
#228401498Sunday, December 03, 2017 10:07 PM GMT

how would i remove the first 5 characters of every string (there will be no string with less than five characters, so no errors) for example: x = "How is it going" what needs to go here? print (x) >"s it going"
Vulkarin
#228401570Sunday, December 03, 2017 10:08 PM GMT

x = string.sub(x, 6, #x)
gaberocksall
#228401733Sunday, December 03, 2017 10:12 PM GMT

thanks, works like a charm

    of     1