I am a bit clueless about the next task. I wish to select a text between " that its inside a tag but not outside of the tag,i.e. a selection inside another selection.
I have the next tag: <| and |> and i want to select a text only if its between the " and between the tags.
<| blah blah blah "should be selected" not selected "select it too" |> "not selected too"
I think something about
(\<\|)(\").*?(\")(\|\>)
But it doesn't work.