Menu

#47 Implement regular expressions

Version 2.0
open
5
2017-08-13
2009-07-25
No

Implement search/replace for regular expressions. Use the ones from Perl as a base (seems to be the most comprehensive ones).

Discussion

  • Andrei Kapustin

    Andrei Kapustin - 2012-11-01
    • milestone: 556494 --> Version 2.0
     
  • Andrei Kapustin

    Andrei Kapustin - 2017-08-13

    Update: C++ now has regex support, so use it across all platforms.

    Generalize to "pattern matching", which allows matching strings to patterns. One kind of patterns are regexes, another a OS-style globs (with ? and *). This done, the directory and file dialog filters can be switched to use the "glob pattern matcher").