ik have a document and i only want to have the sentences out of the document that contain a specific word.
For example
There is a guy walking on the street. the street is long and grey and has white stripes in the middle. the guy crosses the road. His location is now on the left side of the road.
So my specific word i want to filter on is location, so i want to have the sentence:"His location is now on the left side of the road." .
and i want to have multiple critrea like "location" to filter on..
you could use the 'Sentence Extractor' node first. It extracts the sentences and returns them in a string column. Afterwards apply the "Row Filter" with the regular expression ^.*location.* on the sentence column to filter the strings containing the substring 'location'. This works for different criteria of course.
if i use multiple criteria with dictionary... is it also posible to display the criteria, in a diffrent cell than the sentence, behind the sentence that is filtered based on the critrea?
the matching criteria can not be shown in an additional column, in case you have multiple criterias and using the Rule-based Row Filter or Rule Engine node.