I have a file which i get using the GetFile Processor.
The flowfile generated from this has an attribute (filename).
I want to split this "filename" attribute with value "ABC_gh_1245_ty.csv" by "_" into multiple attributes
ATTR1 = "ABC"
ATTR2 = "gh"
ATTR3 = "1245"
ATTR4 = "ty.csv"
I presume that there are no processors available for this functionality in nifi 1.7.1
I googled and found this custom processor: https://github.com/guvencenanguvenal/nifi-splitcreateattribute
It still doesnt work. It errors out with 'Attribuite dont found'


