I have been looking for previous answers but none of them were of use for my case.
I have a string such as:
"ABCD(EFG, HIJ, KLM)"
I want to get the content using sscanf
Its' regex equivalent is /(.*)\((.*?),\s?(.*?),\s?(.*?)\)/g
but I do not know how to apply it in sscanf.