WhoAmI Posted March 20, 2015 Share Posted March 20, 2015 Hello, i just want to know how to remove coma from string? Well, i want to delete ONLY ONE coma which is on the end of string. Like "Something, something, something," and i want "Something, something, something" Link to comment
TAPL Posted March 20, 2015 Share Posted March 20, 2015 str = "Something, something, something," fStr = string.sub(str, 1, -2) print(fStr) -- > "Something, something, something" Link to comment
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