A program to recognize and reward our most engaged community members
Hi rapidminers,
Can someone suggest why this regex:
[a-zA-Z\u0080-\u024F\s\-\`\']+
is not accepted in expression builder? It is correct and validated via multiple online checkers.
RapidMiner 7.6.001 under Windows.
thanks.
Yes, it's just different implementations of regex. In the java version, the "\" is a special character so it needs to be declared with the special escape character for that, which also happens to be "\". That's why you need "\\". If you were wanting to use other regex special characters (like ?,+,., etc.) you would also need to preface them with "\" in RapidMiner. So it's not the doubling of the character that matters, just the preface with "\".
By chance I found that it works with double escape characters:
Though the question remains, why this particular editor expects \\ instead of \ ?
Thanks.
Hi @kypexin - so I have found that the online RegEx expression testers are usually running JavaScript, which appears to sometimes parse expressions differently than Java (which is how RapidMiner does it). Don't ask me why. I think Ingo posted something about this a while ago...
Scott
Thank you guys for sharing some secret knowledge