I have a .srt file with Ghost in the Shell 2 subtitles and I want to clear every piece of dialog except the citations and the translators references for the citation. So in:
    66
    00:12:50,035 --> 00:12:54,096
    "What's the point of blaming the mirror
    if you don't like what you see."
    [Trans. Note: He's quoting Nikolai Vasilevich Gogol.]
I want to select just the:
    "What's the point of blaming the mirror
    if you don't like what you see."
    [Trans. Note: He's quoting Nikolai Vasilevich Gogol.]
So far I got this:
    ("[\s\S]+?"[[\s\S]+?])
But there's a problem with this one, because it selects the pieces of text that are between the "foobar" and the [foobar], like this:
    "If our gods and our hopes are nothing but scientific phenomena,
    then it must be said that our love is scientific as well"
    2
    00:01:05,732 --> 00:01:08,098
    Repo-202 calling air traffic control.
    3
    00:01:08,201 --> 00:01:09,725
    We've arrived over the site.
   [The kanji means "Look"]
I just want to select "citation"[note] when they are together.
 
     
     
    