I want to replace a '+' with ', ' to label an attribute looking like "ZT10+ZT20+ZT30" to get "ZT10, ZT20, ZT30" using
regexp_replace("zone_nr", '+', ', ')
but I get an Eval Error: Invalid regular expression '+': quantifier does not follow a repeatable item.
replace("zone_nr", '+', ', ')? – Taras Oct 22 '18 at 09:15regexp_replace()mandatory? – Jochen Schwarze Oct 22 '18 at 11:43