/*! \file pistring.h
* \ingroup Text
* \brief
* \~english Regular expression
* \~russian Регулярное выражение
*/
/*
PIP - Platform Independent Primitives
Regular expression
Ivan Pelipenko peri4ko@yandex.ru
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see .
*/
#ifndef piregularexpression_h
#define piregularexpression_h
#include
class PIP_EXPORT PIRegularExpression {
public:
enum Option {
None = 0x0,
CaseInsensitive = 0x01,
Singleline = 0x02,
Multiline = 0x04,
InvertedGreediness = 0x08,
Extended = 0x10
};
typedef PIFlags