I'm not to hot on regex, done a fair amount of googling but for some reason seem to be struggling on this. Basically I have a string as:
VALUE1,VALUE2,VALUE3,VALUE4
Now all want is a regex where I can say give me value 2 or give me value 3 etc.
I would have thought I could do something like this to get the 2nd value
,.*,,
This for last etc
,,,.*
There must be a simple solution to this...should also add this has to be done via regex!