How to string.find the square bracket character in lua?

前端 未结 2 1328
南笙
南笙 2021-02-14 11:21

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

2条回答
  •  逝去的感伤
    2021-02-14 12:11

    Use the fourth argument to string.find, which turns off pattern-matching.

    x, y = string.find(s, "[", nil, true)
    

提交回复
热议问题