I have attribute zip code, where all values looks in this form 12345 how can I transform them into this form 123 45?
My idea was to split it using StringReplacer where I would replace \\d{5} by \\d{3} \\s \\d{2}, however I don't know how can I create new attribute which base on the old zip code attribute (12345).
Are there any other ways to do it?