Author Topic: Searching file with regular expressions  (Read 3240 times)

Offline dje

  • Lives here!
  • ****
  • Posts: 683
Searching file with regular expressions
« on: February 12, 2007, 03:15:19 pm »
Hi !

I noticed that some regular expression items works correctly (., charset []) but it seems that the pipe does not work.

For example, the following patterns gives no result, whereas it should:
  • typedef|struct
  • (typedef|struct)
  • (?:typedef|struct)

Is it a bug or is there restrictions ?

Dje