Get quote text from the string
Deleted UserLike:
1
returnquote('makepoll "Hi" "Yes,No"', 1)
Quote
Hi (as a string)
SO I need to return text from " and "
returnquote('makepoll "Hi" "Yes,No"', 1)
print(string.match(s,"(\"%w+\")"))
print(string.match(s,"\"(%w+)\""))
local t = {} for w in string.gmatch(s,'"([^\"]+)"') do 	t[#t+1] = w end