Unix and Linux Discussions Tagged with substring |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
4,255 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
8,723 |
Shell Programming and Scripting |
|
|
|
6 |
10,160 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,667 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
10,096 |
Shell Programming and Scripting |
|
|
|
6 |
10,568 |
Shell Programming and Scripting |
|
|
|
3 |
4,482 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,918 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,714 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,114 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,263 |
Shell Programming and Scripting |
|
|
|
14 |
10,088 |
Shell Programming and Scripting |
|
|
|
1 |
1,852 |
Shell Programming and Scripting |
|
|
|
7 |
4,486 |
UNIX for Dummies Questions & Answers |
|
|
|
32 |
9,817 |
Shell Programming and Scripting |
|
|
|
2 |
12,496 |
Shell Programming and Scripting |
|
|
|
4 |
1,641 |
Shell Programming and Scripting |
|
|
|
3 |
3,241 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
8,830 |
Shell Programming and Scripting |
|
|
|
2 |
19,734 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
9,013 |
Solaris |
|
|
|
4 |
3,975 |
Programming |
|
|
|
5 |
12,538 |
UNIX for Dummies Questions & Answers |
|
|
|
20 |
25,647 |
Shell Programming and Scripting |
|
|
|
8 |
8,794 |
Linux |
|
|
|
11 |
6,361 |
Shell Programming and Scripting |
|
|
|
9 |
15,606 |
Shell Programming and Scripting |
|
|
|
0 |
2,209 |
Shell Programming and Scripting |
|
|
|
8 |
37,223 |
Shell Programming and Scripting |
|
|
|
7 |
16,361 |
Shell Programming and Scripting |
|
|
|
1 |
4,497 |
Shell Programming and Scripting |
|
|
|
11 |
4,345 |
Shell Programming and Scripting |
|
|
|
2 |
8,406 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
15,598 |
Shell Programming and Scripting |
|
|
|
2 |
2,788 |
Shell Programming and Scripting |
|
|
|
1 |
9,416 |
Shell Programming and Scripting |
|
|
|
1 |
4,086 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,020 |
Shell Programming and Scripting |
|
|
|
25 |
8,104 |
Shell Programming and Scripting |
|
|
|
3 |
7,445 |
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)