local ct = s:find('[ \t]', 80)
find function in Lua is generally used to find a particular pattern in a given string. In above line of code, we are passing '[ \t]' as the pattern to find along with 80.
What does it mean to pass [ \t] as the pattern to find and where is this 80 coming from? As far as I know, find function takes only two parameters i.e the string and the pattern to find.
Thanks