mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-23 12:31:08 -06:00
Regexp filters
This adds support for the REGEXP operator using the syntax /regexp/ in the filter line boxes. A new helper option for a not-containing filter is added using this new syntax. This could be simplified using a NOT LIKE filter, but we don't currently support that. The "Use in Filter Expression > Containing" option escapes a possible slash in the beginning, so it is not interpreted as a regexp filter. See issue #1522
This commit is contained in:
@@ -69,7 +69,7 @@ private:
|
||||
void copy(const bool withHeaders, const bool inSQL);
|
||||
void paste();
|
||||
|
||||
void useAsFilter(const QString& filterOperator, bool binary = false);
|
||||
void useAsFilter(const QString& filterOperator, bool binary = false, const QString& operatorSuffix = "");
|
||||
void duplicateUpperCell();
|
||||
|
||||
typedef QList<QByteArray> QByteArrayList;
|
||||
|
||||
Reference in New Issue
Block a user