Regular expressions
- by Infinity
Hello guys!
I need a regular expression for findin a pattern.
This is the pattern:
id|name|code|mobile
I created a pattern for this if I want to search by id (if id = 1):
.*1.*|.*|.*|.*
But it matches every pattern that contains number 1.
What's the problem with it?