Unix and Linux Discussions Tagged with substring |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
4,134 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
8,695 |
Shell Programming and Scripting |
|
|
|
6 |
9,960 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,563 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
10,069 |
Shell Programming and Scripting |
|
|
|
6 |
10,535 |
Shell Programming and Scripting |
|
|
|
3 |
4,388 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,808 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,628 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,029 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,233 |
Shell Programming and Scripting |
|
|
|
14 |
10,069 |
Shell Programming and Scripting |
|
|
|
1 |
1,849 |
Shell Programming and Scripting |
|
|
|
7 |
4,474 |
UNIX for Dummies Questions & Answers |
|
|
|
32 |
9,794 |
Shell Programming and Scripting |
|
|
|
2 |
12,484 |
Shell Programming and Scripting |
|
|
|
4 |
1,637 |
Shell Programming and Scripting |
|
|
|
3 |
3,235 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
8,818 |
Shell Programming and Scripting |
|
|
|
2 |
19,718 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
8,974 |
Solaris |
|
|
|
4 |
3,902 |
Programming |
|
|
|
5 |
12,532 |
UNIX for Dummies Questions & Answers |
|
|
|
20 |
25,638 |
Shell Programming and Scripting |
|
|
|
8 |
8,699 |
Linux |
|
|
|
11 |
6,350 |
Shell Programming and Scripting |
|
|
|
9 |
15,598 |
Shell Programming and Scripting |
|
|
|
0 |
2,209 |
Shell Programming and Scripting |
|
|
|
8 |
37,199 |
Shell Programming and Scripting |
|
|
|
7 |
16,357 |
Shell Programming and Scripting |
|
|
|
1 |
4,491 |
Shell Programming and Scripting |
|
|
|
11 |
4,337 |
Shell Programming and Scripting |
|
|
|
2 |
8,400 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
15,597 |
Shell Programming and Scripting |
|
|
|
2 |
2,786 |
Shell Programming and Scripting |
|
|
|
1 |
9,407 |
Shell Programming and Scripting |
|
|
|
1 |
4,080 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,015 |
Shell Programming and Scripting |
|
|
|
25 |
8,095 |
Shell Programming and Scripting |
|
|
|
3 |
7,442 |
Shell Programming and Scripting |
PCRE_GET_SUBSTRING(3) Library Functions Manual PCRE_GET_SUBSTRING(3)
NAME
PCRE - Perl-compatible regular expressions
SYNOPSIS
#include <pcre.h>
int pcre_get_substring(const char *subject, int *ovector,
int stringcount, int stringnumber,
const char **stringptr);
DESCRIPTION
This is a convenience function for extracting a captured substring. The arguments are:
subject Subject that has been successfully matched
ovector Offset vector that pcre_exec() used
stringcount Value returned by pcre_exec()
stringnumber Number of the required substring
stringptr Where to put the string pointer
The memory in which the substring is placed is obtained by calling pcre_malloc(). The convenience function pcre_free_substring() can be
used to free it when it is no longer needed. The yield of the function is the length of the substring, PCRE_ERROR_NOMEMORY if sufficient
memory could not be obtained, or PCRE_ERROR_NOSUBSTRING if the string number is invalid.
There is a complete description of the PCRE native API in the pcreapi page and a description of the POSIX API in the pcreposix page.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+--------------------+-----------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+--------------------+-----------------+
|Availability | SUNWpcre |
+--------------------+-----------------+
|Interface Stability | Uncommitted |
+--------------------+-----------------+
NOTES
Source for PCRE is available on http://opensolaris.org.
PCRE_GET_SUBSTRING(3)