Multi Commander Support Forum

Multi Commander => Support and Feedback => Topic started by: Suncatcher on September 14, 2023, 09:06:44

Title: Non-greedy dot is not supported
Post by: Suncatcher on September 14, 2023, 09:06:44
Why non-greedy dot is not supported in Multi commander?
The regex
Code: [Select]
\s\(ASOT.*?\)| throws this error.

In this thread (http://forum.multicommander.com/forum/index.php?topic=1315.0) you say that MC has ECMA-complient Regex engine, and ECMA supports .? pattern perfectly. Why MC not?

UPDATE: even this pattern without non-greediness throws error
Code: [Select]
\s\(ASOT.*\)|
and this too
Code: [Select]
\s\(ASOT[^)]*\)|
The most odd thing that it is showing correct transformation in live preview but the error is thrown when I press Start to start the renaming
Title: Re: Non-greedy dot is not supported
Post by: Mathias (Author) on September 14, 2023, 09:31:46
MC do not have its own regex engine. it is using the reqex engine that is included in C++. the option for the regex engine is set to be ECMA, but I don't know if they are any exception or if you need to write in other way.  What it support and not, I don't know. I got it to work with most pattern I tried but Im no regex expert. I don't understand what your are trying to so with the regex