Open petar-dambovaliev opened 2 years ago
Is there a way to match whether any of the values(strings) have a particular substring?
Sure. You can use a regex like .*substring.*. But it won't be efficient. It will have the visit the entire automaton.
.*substring.*
Is there a way to match whether any of the values(strings) have a particular substring?