I am trying to process the output of another script that looks a little something like this:
xxx "ABCD" xxx xxx ["EFGH","IJKL","MNOP","QRST","UVWX","YZ12"]
What I want to do is to be able to find the first substring surrounded by quotes, confirm the value (i.e. "ABCD") and then take all the remaining substrings (there is a variable number of substrings) and put them in an array.
I've been looking around for the answer to this but the references I've been able to find involve just extracting one substring and not multiples.