Hi everbody,
I try to use the Mapping operator to replace some attribute values by others.
Possible values are: "disease1", "disiease2", "disease3" and "Healthy".
I want to replace everything that is NOT "Healthy" by "Sick" and try a regex with negative lookahead like this: ^(?!Healthy).
Unfortunately, nothing is replaced :-(
What am I doing wrong ? When I test the regex at
http://www.regexplanet.com/simple/index.html it seems to work.
Thanks,
Axel