teQuilla Posted March 10, 2014 Posted March 10, 2014 Is there any way to remove the last character from a string ? Like "password" -> "passwor" Can you give me any examples too , please ? Strings part is not my best .
DakiLLa Posted March 10, 2014 Posted March 10, 2014 local str = "password" local cCut = 1 -- We want to remove only one character from the string str = str:sub( 1, #str - cCut ) --- print( str ) -- Will print 'passwor'
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now