Take the following contents of a file:
"52245" "528" "06156903" "52246" "530" "00584709"
What pattern would match both 52245 and 52246 but nothing else?
|
|
|||||||||||
|
|
|
Something that can only match those two numbers and nothing else:
Now if you're looking for something a bit more general (for example, any number with 5 digits), you'll want something like
I'm assuming the quotation marks ( The particular grep expression you want is this:
or to take a suggestion from the comments:
I've tested both and they work on my machine! |
||||||||||||
|
|
|
^(52245|52246)$ |
||||||||||
|
|
|
You should base the regex you use on the semantic you want to express. If you are looking for two arbitrary numbers use |
|||
|
|