After some trial and error the escaped ")" inside the lookbehind seems to be the culprit: This lookbehind does not work: (?<=\\)), I guess because of the double closed parentheses. When I replace the escaped ")" with another character like a "." it works fine. However this seems to only be an issue in combination with a condition. Would love to know if there is a way to make this work as intended.
After some trial and error the escaped ")" inside the lookbehind seems to be the culprit: This lookbehind does not work: (?<=\)), I guess because of the double closed parentheses. When I replace the escaped ")" with another character like a "." it works fine. However this seems to only be an issue in combination with a condition. Would love to know if there is a way to make this work as intended.
Interestingly the first time I tried running this in build 22278 (2022 beta) it failed with the same error message. Out of curiosity, I modified the regex from
(?<=\))(\d|\-|\ )+
to
(?<=\))(\d|\-|\s)+
to see if it was just the space that was causing issues. Running with the whitespace character \s seemed to work.
Even more interesting, when I set the Regex back to the original (?<=\))(\d|\-|\ )+ the workspace ran without any issues! After seeing that work, I tried adding a new StringSearcher in 22 and confirmed that it runs the first time with the original conditional statement. So the good news is, this is already fixed! Is running this workspace in FME 22 a suitable workaround for the time being?
Hi @chrisatsafe,
thanks for looking into this issue. I still got the same error after updating to the newest version of FME 2021, but upgrading to FME 2022 fixed the issue for me as well. Fortunately I have a floating license so I can use both versions but maybe it would still make sense to create a bug report?
Hi @chrisatsafe,
thanks for looking into this issue. I still got the same error after updating to the newest version of FME 2021, but upgrading to FME 2022 fixed the issue for me as well. Fortunately I have a floating license so I can use both versions but maybe it would still make sense to create a bug report?
In this case, it doesn't seem like the fix will be backported to 2021 since it's already in the 2022 beta.