Hi,
I want to make a RegexMatchAt that from an string results only one Regex... It will be more clear with an example.
I have one string: bu,si,tres
with this Regex: [^,]+ (It selects groups of any character separates with a comma ,)
So, if I understand well I will hope that:
RegexMatchAt("bu,si,tres","[^,]+","i",1) ==> bu
RegexMatchAt("bu,si,tres","[^,]+","i",2) ==> si
RegexMatchAt("bu,si,tres","[^,]+","i",3) ==> tres
But It sees none with 2 and 3... Can anyone help me?