blob: 892906a7fe238b185e4a01b75c0a11851f86998c [file] [log] [blame]
Elliott Hughes2dbd7d22020-06-03 14:32:37 -07001.TH PCRE2PARTIAL 3 "04 September 2019" "PCRE2 10.34"
Janis Danisevskis112c9cc2016-03-31 13:35:25 +01002.SH NAME
3PCRE2 - Perl-compatible regular expressions
4.SH "PARTIAL MATCHING IN PCRE2"
5.rs
6.sp
Elliott Hughes2dbd7d22020-06-03 14:32:37 -07007In normal use of PCRE2, if there is a match up to the end of a subject string,
8but more characters are needed to match the entire pattern, PCRE2_ERROR_NOMATCH
9is returned, just like any other failing match. There are circumstances where
10it might be helpful to distinguish this "partial match" case.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010011.P
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070012One example is an application where the subject string is very long, and not
13all available at once. The requirement here is to be able to do the matching
14segment by segment, but special action is needed when a matched substring spans
15the boundary between two segments.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010016.P
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070017Another example is checking a user input string as it is typed, to ensure that
18it conforms to a required format. Invalid characters can be immediately
19diagnosed and rejected, giving instant feedback.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010020.P
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070021Partial matching is a PCRE2-specific feature; it is not Perl-compatible. It is
22requested by setting one of the PCRE2_PARTIAL_HARD or PCRE2_PARTIAL_SOFT
23options when calling a matching function. The difference between the two
24options is whether or not a partial match is preferred to an alternative
25complete match, though the details differ between the two types of matching
26function. If both options are set, PCRE2_PARTIAL_HARD takes precedence.
27.P
28If you want to use partial matching with just-in-time optimized code, as well
29as setting a partial match option for the matching function, you must also call
30\fBpcre2_jit_compile()\fP with one or both of these options:
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010031.sp
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010032 PCRE2_JIT_PARTIAL_HARD
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070033 PCRE2_JIT_PARTIAL_SOFT
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010034.sp
35PCRE2_JIT_COMPLETE should also be set if you are going to run non-partial
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070036matches on the same pattern. Separate code is compiled for each mode. If the
37appropriate JIT mode has not been compiled, interpretive matching code is used.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010038.P
39Setting a partial matching option disables two of PCRE2's standard
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070040optimization hints. PCRE2 remembers the last literal code unit in a pattern,
41and abandons matching immediately if it is not present in the subject string.
42This optimization cannot be used for a subject string that might match only
43partially. PCRE2 also remembers a minimum length of a matching string, and does
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010044not bother to run the matching function on shorter strings. This optimization
45is also disabled for partial matching.
46.
47.
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070048.SH "REQUIREMENTS FOR A PARTIAL MATCH"
49.rs
50.sp
51A possible partial match occurs during matching when the end of the subject
52string is reached successfully, but either more characters are needed to
53complete the match, or the addition of more characters might change what is
54matched.
55.P
56Example 1: if the pattern is /abc/ and the subject is "ab", more characters are
57definitely needed to complete a match. In this case both hard and soft matching
58options yield a partial match.
59.P
60Example 2: if the pattern is /ab+/ and the subject is "ab", a complete match
61can be found, but the addition of more characters might change what is
62matched. In this case, only PCRE2_PARTIAL_HARD returns a partial match;
63PCRE2_PARTIAL_SOFT returns the complete match.
64.P
65On reaching the end of the subject, when PCRE2_PARTIAL_HARD is set, if the next
66pattern item is \ez, \eZ, \eb, \eB, or $ there is always a partial match.
67Otherwise, for both options, the next pattern item must be one that inspects a
68character, and at least one of the following must be true:
69.P
70(1) At least one character has already been inspected. An inspected character
71need not form part of the final matched string; lookbehind assertions and the
72\eK escape sequence provide ways of inspecting characters before the start of a
73matched string.
74.P
75(2) The pattern contains one or more lookbehind assertions. This condition
76exists in case there is a lookbehind that inspects characters before the start
77of the match.
78.P
79(3) There is a special case when the whole pattern can match an empty string.
80When the starting point is at the end of the subject, the empty string match is
81a possibility, and if PCRE2_PARTIAL_SOFT is set and neither of the above
82conditions is true, it is returned. However, because adding more characters
83might result in a non-empty match, PCRE2_PARTIAL_HARD returns a partial match,
84which in this case means "there is going to be a match at this point, but until
85some more characters are added, we do not know if it will be an empty string or
86something longer".
87.
88.
89.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010090.SH "PARTIAL MATCHING USING pcre2_match()"
91.rs
92.sp
Elliott Hughes2dbd7d22020-06-03 14:32:37 -070093When a partial matching option is set, the result of calling
94\fBpcre2_match()\fP can be one of the following:
95.TP 2
96\fBA successful match\fP
97A complete match has been found, starting and ending within this subject.
98.TP
99\fBPCRE2_ERROR_NOMATCH\fP
100No match can start anywhere in this subject.
101.TP
102\fBPCRE2_ERROR_PARTIAL\fP
103Adding more characters may result in a complete match that uses one or more
104characters from the end of this subject.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100105.P
106When a partial match is returned, the first two elements in the ovector point
107to the portion of the subject that was matched, but the values in the rest of
108the ovector are undefined. The appearance of \eK in the pattern has no effect
109for a partial match. Consider this pattern:
110.sp
111 /abc\eK123/
112.sp
113If it is matched against "456abc123xyz" the result is a complete match, and the
114ovector defines the matched string as "123", because \eK resets the "start of
115match" point. However, if a partial match is requested and the subject string
116is "456abc12", a partial match is found for the string "abc12", because all
117these characters are needed for a subsequent re-match with additional
118characters.
119.P
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100120If there is more than one partial match, the first one that was found provides
121the data that is returned. Consider this pattern:
122.sp
123 /123\ew+X|dogY/
124.sp
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700125If this is matched against the subject string "abc123dog", both alternatives
126fail to match, but the end of the subject is reached during matching, so
127PCRE2_ERROR_PARTIAL is returned. The offsets are set to 3 and 9, identifying
128"123dog" as the first partial match. (In this example, there are two partial
129matches, because "dog" on its own partially matches the second alternative.)
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100130.
131.
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700132.SS "How a partial match is processed by pcre2_match()"
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100133.rs
134.sp
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700135What happens when a partial match is identified depends on which of the two
136partial matching options is set.
137.P
138If PCRE2_PARTIAL_HARD is set, PCRE2_ERROR_PARTIAL is returned as soon as a
139partial match is found, without continuing to search for possible complete
140matches. This option is "hard" because it prefers an earlier partial match over
141a later complete match. For this reason, the assumption is made that the end of
142the supplied subject string is not the true end of the available data, which is
143why \ez, \eZ, \eb, \eB, and $ always give a partial match.
144.P
145If PCRE2_PARTIAL_SOFT is set, the partial match is remembered, but matching
146continues as normal, and other alternatives in the pattern are tried. If no
147complete match can be found, PCRE2_ERROR_PARTIAL is returned instead of
148PCRE2_ERROR_NOMATCH. This option is "soft" because it prefers a complete match
149over a partial match. All the various matching items in a pattern behave as if
150the subject string is potentially complete; \ez, \eZ, and $ match at the end of
151the subject, as normal, and for \eb and \eB the end of the subject is treated
152as a non-alphanumeric.
153.P
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100154The difference between the two partial matching options can be illustrated by a
155pattern such as:
156.sp
157 /dog(sbody)?/
158.sp
159This matches either "dog" or "dogsbody", greedily (that is, it prefers the
160longer string if possible). If it is matched against the string "dog" with
161PCRE2_PARTIAL_SOFT, it yields a complete match for "dog". However, if
162PCRE2_PARTIAL_HARD is set, the result is PCRE2_ERROR_PARTIAL. On the other
163hand, if the pattern is made ungreedy the result is different:
164.sp
165 /dog(sbody)??/
166.sp
167In this case the result is always a complete match because that is found first,
168and matching never continues after finding a complete match. It might be easier
169to follow this explanation by thinking of the two patterns like this:
170.sp
171 /dog(sbody)?/ is the same as /dogsbody|dog/
172 /dog(sbody)??/ is the same as /dog|dogsbody/
173.sp
174The second pattern will never match "dogsbody", because it will always find the
175shorter match first.
176.
177.
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700178.SS "Example of partial matching using pcre2test"
179.rs
180.sp
181The \fBpcre2test\fP data modifiers \fBpartial_hard\fP (or \fBph\fP) and
182\fBpartial_soft\fP (or \fBps\fP) set PCRE2_PARTIAL_HARD and PCRE2_PARTIAL_SOFT,
183respectively, when calling \fBpcre2_match()\fP. Here is a run of
184\fBpcre2test\fP using a pattern that matches the whole subject in the form of a
185date:
186.sp
187 re> /^\ed?\ed(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\ed\ed$/
188 data> 25dec3\e=ph
189 Partial match: 23dec3
190 data> 3ju\e=ph
191 Partial match: 3ju
192 data> 3juj\e=ph
193 No match
194.sp
195This example gives the same results for both hard and soft partial matching
196options. Here is an example where there is a difference:
197.sp
198 re> /^\ed?\ed(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\ed\ed$/
199 data> 25jun04\e=ps
200 0: 25jun04
201 1: jun
202 data> 25jun04\e=ph
203 Partial match: 25jun04
204.sp
205With PCRE2_PARTIAL_SOFT, the subject is matched completely. For
206PCRE2_PARTIAL_HARD, however, the subject is assumed not to be complete, so
207there is only a partial match.
208.
209.
210.
211.SH "MULTI-SEGMENT MATCHING WITH pcre2_match()"
212.rs
213.sp
214PCRE was not originally designed with multi-segment matching in mind. However,
215over time, features (including partial matching) that make multi-segment
216matching possible have been added. A very long string can be searched segment
217by segment by calling \fBpcre2_match()\fP repeatedly, with the aim of achieving
218the same results that would happen if the entire string was available for
219searching all the time. Normally, the strings that are being sought are much
220shorter than each individual segment, and are in the middle of very long
221strings, so the pattern is normally not anchored.
222.P
223Special logic must be implemented to handle a matched substring that spans a
224segment boundary. PCRE2_PARTIAL_HARD should be used, because it returns a
225partial match at the end of a segment whenever there is the possibility of
226changing the match by adding more characters. The PCRE2_NOTBOL option should
227also be set for all but the first segment.
228.P
229When a partial match occurs, the next segment must be added to the current
230subject and the match re-run, using the \fIstartoffset\fP argument of
231\fBpcre2_match()\fP to begin at the point where the partial match started.
232For example:
233.sp
234 re> /\ed?\ed(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\ed\ed/
235 data> ...the date is 23ja\e=ph
236 Partial match: 23ja
237 data> ...the date is 23jan19 and on that day...\e=offset=15
238 0: 23jan19
239 1: jan
240.sp
241Note the use of the \fBoffset\fP modifier to start the new match where the
242partial match was found. In this example, the next segment was added to the one
243in which the partial match was found. This is the most straightforward
244approach, typically using a memory buffer that is twice the size of each
245segment. After a partial match, the first half of the buffer is discarded, the
246second half is moved to the start of the buffer, and a new segment is added
247before repeating the match as in the example above. After a no match, the
248entire buffer can be discarded.
249.P
250If there are memory constraints, you may want to discard text that precedes a
251partial match before adding the next segment. Unfortunately, this is not at
252present straightforward. In cases such as the above, where the pattern does not
253contain any lookbehinds, it is sufficient to retain only the partially matched
254substring. However, if the pattern contains a lookbehind assertion, characters
255that precede the start of the partial match may have been inspected during the
256matching process. When \fBpcre2test\fP displays a partial match, it indicates
257these characters with '<' if the \fBallusedtext\fP modifier is set:
258.sp
259 re> "(?<=123)abc"
260 data> xx123ab\e=ph,allusedtext
261 Partial match: 123ab
262 <<<
263.sp
264However, the \fBallusedtext\fP modifier is not available for JIT matching,
265because JIT matching does not record the first (or last) consulted characters.
266For this reason, this information is not available via the API. It is therefore
267not possible in general to obtain the exact number of characters that must be
268retained in order to get the right match result. If you cannot retain the
269entire segment, you must find some heuristic way of choosing.
270.P
271If you know the approximate length of the matching substrings, you can use that
272to decide how much text to retain. The only lookbehind information that is
273currently available via the API is the length of the longest individual
274lookbehind in a pattern, but this can be misleading if there are nested
275lookbehinds. The value returned by calling \fBpcre2_pattern_info()\fP with the
276PCRE2_INFO_MAXLOOKBEHIND option is the maximum number of characters (not code
277units) that any individual lookbehind moves back when it is processed. A
278pattern such as "(?<=(?<!b)a)" has a maximum lookbehind value of one, but
279inspects two characters before its starting point.
280.P
281In a non-UTF or a 32-bit case, moving back is just a subtraction, but in
282UTF-8 or UTF-16 you have to count characters while moving back through the code
283units.
284.
285.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100286.SH "PARTIAL MATCHING USING pcre2_dfa_match()"
287.rs
288.sp
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700289The DFA function moves along the subject string character by character, without
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100290backtracking, searching for all possible matches simultaneously. If the end of
291the subject is reached before the end of the pattern, there is the possibility
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700292of a partial match.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100293.P
294When PCRE2_PARTIAL_SOFT is set, PCRE2_ERROR_PARTIAL is returned only if there
295have been no complete matches. Otherwise, the complete matches are returned.
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700296If PCRE2_PARTIAL_HARD is set, a partial match takes precedence over any
297complete matches. The portion of the string that was matched when the longest
298partial match was found is set as the first matching string.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100299.P
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700300Because the DFA function always searches for all possible matches, and there is
301no difference between greedy and ungreedy repetition, its behaviour is
302different from the \fBpcre2_match()\fP. Consider the string "dog" matched
303against this ungreedy pattern:
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100304.sp
305 /dog(sbody)??/
306.sp
307Whereas the standard function stops as soon as it finds the complete match for
308"dog", the DFA function also finds the partial match for "dogsbody", and so
309returns that when PCRE2_PARTIAL_HARD is set.
310.
311.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100312.SH "MULTI-SEGMENT MATCHING WITH pcre2_dfa_match()"
313.rs
314.sp
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700315When a partial match has been found using the DFA matching function, it is
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100316possible to continue the match by providing additional subject data and calling
317the function again with the same compiled regular expression, this time setting
318the PCRE2_DFA_RESTART option. You must pass the same working space as before,
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700319because this is where details of the previous partial match are stored. You can
320set the PCRE2_PARTIAL_SOFT or PCRE2_PARTIAL_HARD options with PCRE2_DFA_RESTART
321to continue partial matching over multiple segments. Here is an example using
322\fBpcre2test\fP:
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100323.sp
324 re> /^\ed?\ed(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\ed\ed$/
325 data> 23ja\e=dfa,ps
326 Partial match: 23ja
327 data> n05\e=dfa,dfa_restart
328 0: n05
329.sp
330The first call has "23ja" as the subject, and requests partial matching; the
331second call has "n05" as the subject for the continued (restarted) match.
332Notice that when the match is complete, only the last part is shown; PCRE2 does
333not retain the previously partially-matched string. It is up to the calling
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700334program to do that if it needs to. This means that, for an unanchored pattern,
335if a continued match fails, it is not possible to try again at a new starting
336point. All this facility is capable of doing is continuing with the previous
337match attempt. For example, consider this pattern:
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100338.sp
339 1234|3789
340.sp
341If the first part of the subject is "ABC123", a partial match of the first
342alternative is found at offset 3. There is no partial match for the second
343alternative, because such a match does not start at the same point in the
344subject string. Attempting to continue with the string "7890" does not yield a
345match because only those alternatives that match at one point in the subject
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700346are remembered. Depending on the application, this may or may not be what you
347want.
348.P
349If you do want to allow for starting again at the next character, one way of
350doing it is to retain some or all of the segment and try a new complete match,
351as described for \fBpcre2_match()\fP above. Another possibility is to work with
352two buffers. If a partial match at offset \fIn\fP in the first buffer is
353followed by "no match" when PCRE2_DFA_RESTART is used on the second buffer, you
354can then try a new match starting at offset \fIn+1\fP in the first buffer.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100355.
356.
357.SH AUTHOR
358.rs
359.sp
360.nf
361Philip Hazel
362University Computing Service
363Cambridge, England.
364.fi
365.
366.
367.SH REVISION
368.rs
369.sp
370.nf
Elliott Hughes2dbd7d22020-06-03 14:32:37 -0700371Last updated: 04 September 2019
372Copyright (c) 1997-2019 University of Cambridge.
Janis Danisevskis112c9cc2016-03-31 13:35:25 +0100373.fi