How can I select the second string under quotation marks with regular expressions?
For example:
entry = ("plk", "Kopiuj - linearnie");
entry = ("ptb", "Copiar - linear");
I know that "[^"]*" selects everything under quotation marks, but what I’d like to find with regex is “Kopiuj – linearnie” and “Copiar – linear” and ignore the first string under ” like “plk” and “ptb” (i.e. the second string per line).
Cheers,
Just make it capture the closing parenthesis, like so
the resulting string is in the first capture group.