#9745
Stefan
Participant

Thank you.

My understanding right now:
You have to set up the FIND RegEx with an alternation so that it has both a success and a failure point.
As the REPLACE have too possibilities too: (?n:true_expression:false_expression)

Test:


I have:
Test Price 1000
Test Price 100
Test Price 800

Find: (.+) (.+) (d{3})(d)*
Repl: (?4: too expensive: affordable)
[X] Use RegEx

Result:
Test Price 1000 too expensive
Test Price 100 affordable
Test Price 800 affordable

Thanks again. I still have to do some test, but i think you showed me the way.


BTW, good idea :lol: of you:
Replace: (?4:too expensive:affordable)