The buffer string char *bufferString
points to the first element of the following string:
BER Berman, Jane 06/29/91 Photography;Dance;Music\n
I'd like to parse each item of the topics last list of topics only and store them
What I've tried:
#define REGEX_TOPIC "^[a-zA-Z].*^[0-9/0-90-9/0-90-9+]"
char *topic;
topic = strstr(bufferString, REGEX_TOPIC);
Could you help me here?