Hello,
I am trying to extract ALL strings between two apostraphes within a given string but for some reason I only seem to be getting the first one.
The string I am trying to extract from is:'1962' '1963' '1964' '1965' '1966'
The code I'm trying to use to get all the extracts is:var testRE; testRE = results.match("'(.*?)'");
(When I alert the length of testRE it only says 2).
Any help is appreciated, thanks!