pcre_get_substring.3 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .TH PCRE_GET_SUBSTRING 3 "24 June 2012" "PCRE 8.30"
  2. .SH NAME
  3. PCRE - Perl-compatible regular expressions
  4. .SH SYNOPSIS
  5. .rs
  6. .sp
  7. .B #include <pcre.h>
  8. .PP
  9. .nf
  10. .B int pcre_get_substring(const char *\fIsubject\fP, int *\fIovector\fP,
  11. .B " int \fIstringcount\fP, int \fIstringnumber\fP,"
  12. .B " const char **\fIstringptr\fP);"
  13. .sp
  14. .B int pcre16_get_substring(PCRE_SPTR16 \fIsubject\fP, int *\fIovector\fP,
  15. .B " int \fIstringcount\fP, int \fIstringnumber\fP,"
  16. .B " PCRE_SPTR16 *\fIstringptr\fP);"
  17. .sp
  18. .B int pcre32_get_substring(PCRE_SPTR32 \fIsubject\fP, int *\fIovector\fP,
  19. .B " int \fIstringcount\fP, int \fIstringnumber\fP,"
  20. .B " PCRE_SPTR32 *\fIstringptr\fP);"
  21. .fi
  22. .
  23. .SH DESCRIPTION
  24. .rs
  25. .sp
  26. This is a convenience function for extracting a captured substring. The
  27. arguments are:
  28. .sp
  29. \fIsubject\fP Subject that has been successfully matched
  30. \fIovector\fP Offset vector that \fBpcre[16|32]_exec()\fP used
  31. \fIstringcount\fP Value returned by \fBpcre[16|32]_exec()\fP
  32. \fIstringnumber\fP Number of the required substring
  33. \fIstringptr\fP Where to put the string pointer
  34. .sp
  35. The memory in which the substring is placed is obtained by calling
  36. \fBpcre[16|32]_malloc()\fP. The convenience function
  37. \fBpcre[16|32]_free_substring()\fP can be used to free it when it is no longer
  38. needed. The yield of the function is the length of the substring,
  39. PCRE_ERROR_NOMEMORY if sufficient memory could not be obtained, or
  40. PCRE_ERROR_NOSUBSTRING if the string number is invalid.
  41. .P
  42. There is a complete description of the PCRE native API in the
  43. .\" HREF
  44. \fBpcreapi\fP
  45. .\"
  46. page and a description of the POSIX API in the
  47. .\" HREF
  48. \fBpcreposix\fP
  49. .\"
  50. page.