So I\'m trying to find square brackets inside a string:
s = \"testing [something] something else\" x,y = string.find(s,\"[\")
which gives me an
Use the fourth argument to string.find, which turns off pattern-matching.
x, y = string.find(s, "[", nil, true)