vote up 0 vote down star

Is it possible to count how many times a substring appears in a string using regex matching with GNU libc regexec()?

flag

1 Answer

vote up 1 vote down check

No, regexec() only finds one match per call. If you want to find the next match, you have to call it again further along the string.

If you only want to search for plain substrings, you are much better off using the standard C string.h function strstr(); then you won't have to worry about escaping special regex characters.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.