Take the data set as lines of arrays with values, e.g.:
[ "Dog", "cat", "Bird"]
I would like to get an array with all those values that do not match a regex but am unwilling to use negative capture groups (regex is more complicated than that) - so if my criteria would be that first letter must be capital, the output array should be ["cat"]