Reputation: 30906
I have an array of regex to apply on a string.
regexString = "'\d{2,}';'..'"
regexPatterns = regexString.split(";")
regexPatterns = ["'\d{2,}'","'..'"]
How can I efficiently use that list and only match if all the regex find a match?
Upvotes: 0
Views: 109