Filter by Regular expression within a list

Hello @dptuck and welcome to the Neo4j community :slight_smile:

You can use the any() function to match your regular expressions:

WHERE any(regex IN ['^abc.*', '.*def$', 'exact'] WHERE obj.text =~ regex)

Regards,
Cobra

1 Like