Man page - pcre32_get_stringtable_entries(3)
Packages contains this manual
- pcre32_exec(3)
- pcre32_config(3)
- pcre16_get_substring(3)
- pcrejit(3)
- pcre32_pattern_to_host_byte_order(3)
- pcre_utf16_to_host_byte_order(3)
- pcre16_maketables(3)
- pcrematching(3)
- pcre32_jit_stack_free(3)
- pcre16_exec(3)
- pcre16_free_study(3)
- pcre_get_named_substring(3)
- pcrebuild(3)
- pcre_fullinfo(3)
- pcre32_compile2(3)
- pcre-config(1)
- pcreprecompile(3)
- pcre_compile(3)
- pcreposix(3)
- pcre32_dfa_exec(3)
- pcreperform(3)
- pcre_maketables(3)
- pcre32_free_substring(3)
- pcre32_compile(3)
- pcre32_study(3)
- pcre_free_study(3)
- pcre_jit_stack_free(3)
- pcre_config(3)
- pcre16_compile(3)
- pcre_get_substring_list(3)
- pcre(3)
- pcreunicode(3)
- pcrestack(3)
- pcre_get_substring(3)
- pcreapi(3)
- pcre_free_substring(3)
- pcre16_fullinfo(3)
- pcrelimits(3)
- pcre16_assign_jit_stack(3)
- pcre32_copy_named_substring(3)
- pcre_assign_jit_stack(3)
- pcre32_jit_stack_alloc(3)
- pcre16_compile2(3)
- pcre32_free_study(3)
- pcre16_copy_substring(3)
- pcre_refcount(3)
- pcre32_version(3)
- pcre_pattern_to_host_byte_order(3)
- pcre16_copy_named_substring(3)
- pcre16_get_named_substring(3)
- pcre_utf32_to_host_byte_order(3)
- pcre16_study(3)
- pcresample(3)
- pcrecallout(3)
- pcre_copy_named_substring(3)
- pcre32_jit_exec(3)
- pcre16_jit_exec(3)
- pcre_version(3)
- pcre16_get_stringnumber(3)
- pcre_get_stringnumber(3)
- pcre32_free_substring_list(3)
- pcrepartial(3)
- pcre32_copy_substring(3)
- pcredemo(3)
- pcre16_jit_stack_alloc(3)
- pcre_jit_stack_alloc(3)
- pcre16_refcount(3)
- pcre_jit_exec(3)
- pcresyntax(3)
- pcre16_dfa_exec(3)
- pcre32_maketables(3)
- pcre16_get_substring_list(3)
- pcre32_get_stringnumber(3)
- pcre32_get_stringtable_entries(3)
- pcre32(3)
- pcre16(3)
- pcre16_free_substring_list(3)
- pcre16_version(3)
- pcre16_jit_stack_free(3)
- pcre16_pattern_to_host_byte_order(3)
- pcre32_refcount(3)
- pcre16_get_stringtable_entries(3)
- pcre_compile2(3)
- pcrecompat(3)
- pcre_dfa_exec(3)
- pcre32_fullinfo(3)
- pcrecpp(3)
- pcre_exec(3)
- pcre32_get_substring(3)
- pcre32_assign_jit_stack(3)
- pcre32_get_substring_list(3)
- pcre_get_stringtable_entries(3)
- pcre32_utf32_to_host_byte_order(3)
- pcre_free_substring_list(3)
- pcre16_utf16_to_host_byte_order(3)
- pcre16_config(3)
- pcre16_free_substring(3)
- pcre_study(3)
- pcre32_get_named_substring(3)
- pcre_copy_substring(3)
apt-get install libpcre3-dev
Manual
PCRE_GET_STRINGTABLE_ENTRIES
NAMESYNOPSIS
DESCRIPTION
NAME
PCRE - Perl-compatible regular expressions
SYNOPSIS
#include <pcre.h>
int
pcre_get_stringtable_entries(const pcre *
code
,
const char *
name
, char **
first
,
char **
last
);
int
pcre16_get_stringtable_entries(const pcre16
*
code
,
PCRE_SPTR16
name
, PCRE_UCHAR16
**
first
, PCRE_UCHAR16
**
last
);
int
pcre32_get_stringtable_entries(const pcre32
*
code
,
PCRE_SPTR32
name
, PCRE_UCHAR32
**
first
, PCRE_UCHAR32
**
last
);
DESCRIPTION
This convenience function finds, for a compiled pattern, the first and last entries for a given name in the table that translates capturing parenthesis names into numbers. When names are required to be unique (PCRE_DUPNAMES is not set), it is usually easier to use pcre[16|32]_get_stringnumber() instead.
code
Compiled regular expression
name
Name whose entries required
first
Where to return a pointer to the first entry
last
Where to return a pointer to the last entry
The yield of the function is the length of each entry, or PCRE_ERROR_NOSUBSTRING if none are found.
There is a complete description of the PCRE native API, including the format of the table entries, in the pcreapi page, and a description of the POSIX API in the pcreposix page.