2014-10-13 16:12:33 +04:00
|
|
|
#include "regex.hh"
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2017-10-09 09:56:47 +03:00
|
|
|
Regex::Regex(StringView re, RegexCompileFlags flags, MatchDirection direction)
|
|
|
|
: m_impl{new CompiledRegex{compile_regex(re, flags, direction)}},
|
2017-10-09 09:37:43 +03:00
|
|
|
m_str{re.str()}
|
2017-11-01 09:08:03 +03:00
|
|
|
{}
|
2016-05-10 11:12:30 +03:00
|
|
|
|
2014-10-13 16:12:33 +04:00
|
|
|
String option_to_string(const Regex& re)
|
|
|
|
{
|
2016-02-05 02:52:06 +03:00
|
|
|
return re.str();
|
2014-10-13 16:12:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void option_from_string(StringView str, Regex& re)
|
|
|
|
{
|
2015-07-25 13:15:03 +03:00
|
|
|
re = Regex{str};
|
2014-10-13 16:12:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|