Diff for /embedaddon/pcre/doc/html/pcre_get_named_substring.html between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2012/02/21 23:50:25 version 1.1.1.3, 2013/07/22 08:25:57
Line 30  SYNOPSIS Line 30  SYNOPSIS
 <b>int <i>stringcount</i>, PCRE_SPTR16 <i>stringname</i>,</b>  <b>int <i>stringcount</i>, PCRE_SPTR16 <i>stringname</i>,</b>
 <b>PCRE_SPTR16 *<i>stringptr</i>);</b>  <b>PCRE_SPTR16 *<i>stringptr</i>);</b>
 </P>  </P>
   <P>
   <b>int pcre32_get_named_substring(const pcre32 *<i>code</i>,</b>
   <b>PCRE_SPTR32 <i>subject</i>, int *<i>ovector</i>,</b>
   <b>int <i>stringcount</i>, PCRE_SPTR32 <i>stringname</i>,</b>
   <b>PCRE_SPTR32 *<i>stringptr</i>);</b>
   </P>
 <br><b>  <br><b>
 DESCRIPTION  DESCRIPTION
 </b><br>  </b><br>
Line 39  arguments are: Line 45  arguments are:
 <pre>  <pre>
   <i>code</i>          Compiled pattern    <i>code</i>          Compiled pattern
   <i>subject</i>       Subject that has been successfully matched    <i>subject</i>       Subject that has been successfully matched
  <i>ovector</i>       Offset vector that <b>pcre[16]_exec()</b> used  <i>ovector</i>       Offset vector that <b>pcre[16|32]_exec()</b> used
  <i>stringcount</i>   Value returned by <b>pcre[16]_exec()</b>  <i>stringcount</i>   Value returned by <b>pcre[16|32]_exec()</b>
   <i>stringname</i>    Name of the required substring    <i>stringname</i>    Name of the required substring
   <i>stringptr</i>     Where to put the string pointer    <i>stringptr</i>     Where to put the string pointer
 </pre>  </pre>
 The memory in which the substring is placed is obtained by calling  The memory in which the substring is placed is obtained by calling
<b>pcre[16]_malloc()</b>. The convenience function<b>pcre[16|32]_malloc()</b>. The convenience function
<b>pcre[16]_free_substring()</b> can be used to free it when it is no longer<b>pcre[16|32]_free_substring()</b> can be used to free it when it is no longer
 needed. The yield of the function is the length of the extracted substring,  needed. The yield of the function is the length of the extracted substring,
 PCRE_ERROR_NOMEMORY if sufficient memory could not be obtained, or  PCRE_ERROR_NOMEMORY if sufficient memory could not be obtained, or
 PCRE_ERROR_NOSUBSTRING if the string name is invalid.  PCRE_ERROR_NOSUBSTRING if the string name is invalid.

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>