I have a string like:
{
{ SomeTextNoQuotes, "Some Text's", "Some Text" },
{ SomeTextNoQuotes, "Some Text's", "Some Text" },
{ SomeTextNoQuotes, "Some Text's", "Some Text" },
{ SomeTextNoQuotes, "Some Text's", "Some Text" },
{ SomeTextNoQuotes, "Some Text's", "Some Text" },
}
How can I match the last , "Some Text"
of each row, just before the }
?
By the way, this is in Sublime Text that I'm trying to do it. The values are not consistent like I have them here, and I have a few hundred lines to replace on.
I tried , ".*"
but that matches , "Some Text's, "Some Text"
.