Re: ExtractText resulting multiple attributes

2020-10-09 Thread Mark Payne
Asmath, You can set the “Include Capture Group 0” property to false. That will eliminate event_bag.0. The processor adds a new attribute for each Capture Group specified in the Regex. So you’ll need to change your regular expression to not use Capturing Groups. For example: (?s)(?:.*) It

ExtractText resulting multiple attributes

2020-10-09 Thread KhajaAsmath Mohammed
Hi, I am extracting text using the below expression in NIFI and it results in 3 attributes. Is there a way to get only one attribute? event_bag *event_bag.0* *event_bag.1* [image: image.png] Thanks, Asmath