system.regularexpressionsconsts.pp 1015 B

1234567891011121314151617181920212223
  1. unit System.RegularExpressionsConsts;
  2. interface
  3. resourcestring
  4. SRegExExpressionError = 'Error in regular expression at offset %d: %s';
  5. SRegExIndexOutOfBounds = 'Index out of bounds (%d)';
  6. SRegExInvalidGroupName = 'Invalid group name (%s)';
  7. SRegExInvalidIndexType = 'Invalid index type';
  8. SRegExMatchRequired = 'Successful match required';
  9. SRegExMatchError = 'Error matching the regex: %s';
  10. SRegExMissingExpression = 'A regular expression specified in RegEx is required';
  11. SRegExStringsRequired = 'Strings parameter cannot be nil';
  12. SRegExStudyError = 'Error studying the regex: %s';
  13. SErrRegexOvectorTooSmall = 'output vector was not big enough for all the captured substrings';
  14. SRegExMatcStartAfterEnd = '\K was used in an assertion to set the match start after its end.'+sLineBreak+
  15. 'From end to start the match was: %s';
  16. SErrInvalidNameIndex = 'Invalid group name index: %d, valid range = [0..%d[';
  17. implementation
  18. end.