EDC7014E
Incorrect range values in brace_pair.

Explanation

The re_comp() function detected an error in the input regular expression. The repetition interval specified within the \{m,n\} is incorrect. Specifically, one or more of the following errors may have occurred:
  • One or more numbers within the \{\} are too large. They must be less than 256.
  • Bad numbers (for example, non-numeric values) are used as range values.
  • More than two numbers are given within the \{\}.
  • First number exceeds the second number within the \{\}.

System action

The re_comp() function returns with a pointer to this error message. The application continues to run.

Programmer response

Correct the regular expression pattern and retry the re_comp().

Symbolic Feedback Code

EDC6R6