I want to grep the shortest match and the pattern should be something like:
<car ... model=BMW ...>
...
...
...
</car>
... means any character and the input is multiple lines.
|
I want to grep the shortest match and the pattern should be something like:
... means any character and the input is multiple lines.
| |||||||
feedback
|
|
To get a non-greedy match in regular expressions you need to use the non-greedy modifier
You will also need the dot all modifier so that the dot matches new lines. However it looks suspiciously like you are trying to use regular expressions to parse XML. If your document is in fact XML then you should avoid using regular expressions to do this and instead use an XML parser. If you state what language you are using I can point you towards an appropriate library for that language. | |||||
feedback
|
|
Actualy the .*? only works in perl. I am not sure what the equivalent grep extended regexp syntax would be. Fortunately you can use perl syntax with grep so grep -P would work but grep -E which is same as egrep would not work (it would be greedy). | |||||||||
feedback
|