Created 09-26-2017 03:23 PM
I want to create a new field in the output that is the concatenation of two input fields, example
ouput schema
name
input schema
firstname
lastname
name = firstname (space) lastname
How could I do that with just the record processors?
Created 09-26-2017 03:46 PM
https://github.com/apache/nifi/pull/1920/files
Didn't see docs for it but
concat(/last_name,', ',/first_name) works
View solution in original post