i want to do something that is, essentially, RegExMatchAll
i have strings of text that go something like:
text text 123-456-789 text text 123-456-789 text text 123-456-789 text
i want to extract all the number sequences.
the description of RegExMatch makes me think i can do it with something like:
Code:
regexmatch(myvar, "(\d\d\d-\d\d\d-\d\d\d)", outvar)
...which would put all the results in outvar1, outvar2....
but it doesn't work. i get the first one, but not any others.
what am i doing wrong?
jack