I haven't really seen a way to get a list of group matches in a regex. For example, string( REGEX MATCH ) only returns the whole string matched, not just what was in the capture groups. If I do this:<div><br></div><div>
(\\w+)\\,(\\w+)\\,(\\w+)</div><div><br></div><div>and I match that regex against this string:</div><div><br></div><div>hello,world,today</div><div><br></div><div>I should get a list with:</div><div><br></div><div>hello;world;today</div>
<div><br></div><div>How can I do this? </div><div><div><br></div><div>---------</div>Robert Dailey<br>
</div>