4
4

1 回答 1

6

Enabling "Regex" checkbox, you can use the full regex syntax. I was able to search for spaces with \u0020 and for LF with \x0a.

  • Carriage return and line feed match \r and \n respectively.
  • Arbitrary Unicode character syntax: \uFFFF, where FFFF is a hex Unicode character code.
  • Arbitrary ASCII character syntax: \xFF, where FF is an ASCII hex code.
于 2018-07-12T19:27:09.407 回答