MIKI785 Posted September 14, 2013 Share Posted September 14, 2013 Hello, Is there a way to remove anything in between '<' and '>' characters from string? Any help would be appreciated. Link to comment
Castillo Posted September 14, 2013 Share Posted September 14, 2013 local str = " Test" local start = str:find ( "<" ) local _, end_ = str:find ( ">" ) local str = str:gsub ( str:sub ( ( start + 1 ), ( end_ - 1 ) ), "" ) outputChatBox ( str ) That seems to work, it removes "Hello World" and leaves: "<> Test" intact. 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