To find the last occurrence of a character within a string:
int lastQuote = Text.lastIndexOf('"');
If you want the location of the first double quote, and then the location of next double quote (instead of the last double quote), the indexOf() function takes an optional second argument, defining where to start the search from. Starting the search from the position after a double quote will find the next double quote.