Updated: April 19, 2023 |
Explain a regular expression error code
#include <regex.h> size_t regerror( int err, const regex_t * reg, char * buf, size_t len );
The regerror() function provides a string explaining an error code returned by regcomp() or regexec(). The string is copied into buf for up to len characters.
The number of characters copied into the buffer.
See regcomp().
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |
Henry Spencer. For license information, see Licensing information in Typographical Conventions, Support, and Licensing.