[Linuxdcpp-team] [Bug 1414362] Re: Regex defined for ADL Search does not work with v0.850

2015-02-07 Thread cologic
An addendum: apparently at the end, "/i makes the regex match case insensitive" for ECMAScript regexes of the sort that std::regex supports. LoRenZo: thus, does something like (?=.*?.flac.)/i or ?=.*?.flac./i or etc (if I'm getting it wrong) work in 0.850? It still might make sense to revert to b

[Linuxdcpp-team] [Bug 1414362] Re: Regex defined for ADL Search does not work with v0.850

2015-02-07 Thread cologic
std::regex doesn't support the Perl mode modifiers such as (?i). It is, in fact, a valid RE. http://www.boost.org/doc/libs/1_57_0/libs/regex/doc/html/boost_regex/syntax/perl_syntax.html describes how the"Perl regular expression syntax is based on that used by the programming language Perl . Perl