pcreposix.3
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. .TH PCRE 3
  2. .SH NAME
  3. pcreposix - POSIX API for Perl-compatible regular expressions.
  4. .SH SYNOPSIS
  5. .B #include <pcreposix.h>
  6. .PP
  7. .SM
  8. .br
  9. .B int regcomp(regex_t *fIpregfR, const char *fIpatternfR,
  10. .ti +5n
  11. .B int fIcflagsfR);
  12. .PP
  13. .br
  14. .B int regexec(regex_t *fIpregfR, const char *fIstringfR,
  15. .ti +5n
  16. .B size_t fInmatchfR, regmatch_t fIpmatchfR[], int fIeflagsfR);
  17. .PP
  18. .br
  19. .B size_t regerror(int fIerrcodefR, const regex_t *fIpregfR,
  20. .ti +5n
  21. .B char *fIerrbuffR, size_t fIerrbuf_sizefR);
  22. .PP
  23. .br
  24. .B void regfree(regex_t *fIpregfR);
  25. .SH DESCRIPTION
  26. This set of functions provides a POSIX-style API to the PCRE regular expression
  27. package. See the fBpcrefR documentation for a description of the native API,
  28. which contains additional functionality.
  29. The functions described here are just wrapper functions that ultimately call
  30. the native API. Their prototypes are defined in the fBpcreposix.hfR header
  31. file, and on Unix systems the library itself is called fBpcreposix.afR, so
  32. can be accessed by adding fB-lpcreposixfR to the command for linking an
  33. application which uses them. Because the POSIX functions call the native ones,
  34. it is also necessary to add fR-lpcrefR.
  35. I have implemented only those option bits that can be reasonably mapped to PCRE
  36. native options. In addition, the options REG_EXTENDED and REG_NOSUB are defined
  37. with the value zero. They have no effect, but since programs that are written
  38. to the POSIX interface often use them, this makes it easier to slot in PCRE as
  39. a replacement library. Other POSIX options are not even defined.
  40. When PCRE is called via these functions, it is only the API that is POSIX-like
  41. in style. The syntax and semantics of the regular expressions themselves are
  42. still those of Perl, subject to the setting of various PCRE options, as
  43. described below.
  44. The header for these functions is supplied as fBpcreposix.hfR to avoid any
  45. potential clash with other POSIX libraries. It can, of course, be renamed or
  46. aliased as fBregex.hfR, which is the "correct" name. It provides two
  47. structure types, fIregex_tfR for compiled internal forms, and
  48. fIregmatch_tfR for returning captured substrings. It also defines some
  49. constants whose names start with "REG_"; these are used for setting options and
  50. identifying error codes.
  51. .SH COMPILING A PATTERN
  52. The function fBregcomp()fR is called to compile a pattern into an
  53. internal form. The pattern is a C string terminated by a binary zero, and
  54. is passed in the argument fIpatternfR. The fIpregfR argument is a pointer
  55. to a regex_t structure which is used as a base for storing information about
  56. the compiled expression.
  57. The argument fIcflagsfR is either zero, or contains one or more of the bits
  58. defined by the following macros:
  59.   REG_ICASE
  60. The PCRE_CASELESS option is set when the expression is passed for compilation
  61. to the native function.
  62.   REG_NEWLINE
  63. The PCRE_MULTILINE option is set when the expression is passed for compilation
  64. to the native function.
  65. In the absence of these flags, no options are passed to the native function.
  66. This means the the regex is compiled with PCRE default semantics. In
  67. particular, the way it handles newline characters in the subject string is the
  68. Perl way, not the POSIX way. Note that setting PCRE_MULTILINE has only
  69. fIsomefR of the effects specified for REG_NEWLINE. It does not affect the way
  70. newlines are matched by . (they aren't) or a negative class such as [^a] (they
  71. are).
  72. The yield of fBregcomp()fR is zero on success, and non-zero otherwise. The
  73. fIpregfR structure is filled in on success, and one member of the structure
  74. is publicized: fIre_nsubfR contains the number of capturing subpatterns in
  75. the regular expression. Various error codes are defined in the header file.
  76. .SH MATCHING A PATTERN
  77. The function fBregexec()fR is called to match a pre-compiled pattern
  78. fIpregfR against a given fIstringfR, which is terminated by a zero byte,
  79. subject to the options in fIeflagsfR. These can be:
  80.   REG_NOTBOL
  81. The PCRE_NOTBOL option is set when calling the underlying PCRE matching
  82. function.
  83.   REG_NOTEOL
  84. The PCRE_NOTEOL option is set when calling the underlying PCRE matching
  85. function.
  86. The portion of the string that was matched, and also any captured substrings,
  87. are returned via the fIpmatchfR argument, which points to an array of
  88. fInmatchfR structures of type fIregmatch_tfR, containing the members
  89. fIrm_sofR and fIrm_eofR. These contain the offset to the first character of
  90. each substring and the offset to the first character after the end of each
  91. substring, respectively. The 0th element of the vector relates to the entire
  92. portion of fIstringfR that was matched; subsequent elements relate to the
  93. capturing subpatterns of the regular expression. Unused entries in the array
  94. have both structure members set to -1.
  95. A successful match yields a zero return; various error codes are defined in the
  96. header file, of which REG_NOMATCH is the "expected" failure code.
  97. .SH ERROR MESSAGES
  98. The fBregerror()fR function maps a non-zero errorcode from either
  99. fBregcompfR or fBregexecfR to a printable message. If fIpregfR is not
  100. NULL, the error should have arisen from the use of that structure. A message
  101. terminated by a binary zero is placed in fIerrbuffR. The length of the
  102. message, including the zero, is limited to fIerrbuf_sizefR. The yield of the
  103. function is the size of buffer needed to hold the whole message.
  104. .SH STORAGE
  105. Compiling a regular expression causes memory to be allocated and associated
  106. with the fIpregfR structure. The function fBregfree()fR frees all such
  107. memory, after which fIpregfR may no longer be used as a compiled expression.
  108. .SH AUTHOR
  109. Philip Hazel <ph10@cam.ac.uk>
  110. .br
  111. University Computing Service,
  112. .br
  113. New Museums Site,
  114. .br
  115. Cambridge CB2 3QG, England.
  116. .br
  117. Phone: +44 1223 334714
  118. Copyright (c) 1997-2000 University of Cambridge.