How do I match a square bracket literal using RegEx?

前端 未结 6 2003
灰色年华
灰色年华 2021-02-07 00:27

What\'s the regex to match a square bracket? I\'m using \\\\] in a pattern in eregi_replace, but it doesn\'t seem to be able to find a ]..

6条回答
  •  萌比男神i
    2021-02-07 01:06

    \] is correct, but note that PHP itself ALSO has \ as an escape character, so you might have to use \\[ (or a different kind of string literal).

提交回复
热议问题