I want to match a group recursively using PCRE C library.
e.g.
pattern = \"(\\d,)\" subject = \"5,6,3,2,\" OVECCOUNT = 30 pcrePtr = pcre_compile(pat
Any way I used strtok since "," was repeating after each group..
Solution using pcre is welcomed....