Do you mean that you want to write a Regular Expression (Regex) that will match both lines? If so, there could be many answers that would NOT make sense----for example, these will all match both lines
Code:
grep '".*"' filename
grep '^"' filename
grep face filename
grep book filename
I think what you need is to define how to uniquely match those two lines in the context of many others---and you have to be precise in defining what the matching criteria are.