1=head1 NAME
2X<character class>
3
4perlrecharclass - Perl Regular Expression Character Classes
5
6=head1 DESCRIPTION
7
8The top level documentation about Perl regular expressions
9is found in L<perlre>.
10
11This manual page discusses the syntax and use of character
12classes in Perl regular expressions.
13
14A character class is a way of denoting a set of characters
15in such a way that one character of the set is matched.
16It's important to remember that: matching a character class
17consumes exactly one character in the source string. (The source
18string is the string the regular expression is matched against.)
19
20There are three types of character classes in Perl regular
21expressions: the dot, backslash sequences, and the form enclosed in square
22brackets.  Keep in mind, though, that often the term "character class" is used
23to mean just the bracketed form.  Certainly, most Perl documentation does that.
24
25=head2 The dot
26
27The dot (or period), C<.> is probably the most used, and certainly
28the most well-known character class. By default, a dot matches any
29character, except for the newline. That default can be changed to
30add matching the newline by using the I<single line> modifier:
31for the entire regular expression with the C</s> modifier, or
32locally with C<(?s)>  (and even globally within the scope of
33L<C<use re '/s'>|re/'E<sol>flags' mode>).  (The C<L</\N>> backslash
34sequence, described
35below, matches any character except newline without regard to the
36I<single line> modifier.)
37
38Here are some examples:
39
40 "a"  =~  /./       # Match
41 "."  =~  /./       # Match
42 ""   =~  /./       # No match (dot has to match a character)
43 "\n" =~  /./       # No match (dot does not match a newline)
44 "\n" =~  /./s      # Match (global 'single line' modifier)
45 "\n" =~  /(?s:.)/  # Match (local 'single line' modifier)
46 "ab" =~  /^.$/     # No match (dot matches one character)
47
48=head2 Backslash sequences
49X<\w> X<\W> X<\s> X<\S> X<\d> X<\D> X<\p> X<\P>
50X<\N> X<\v> X<\V> X<\h> X<\H>
51X<word> X<whitespace>
52
53A backslash sequence is a sequence of characters, the first one of which is a
54backslash.  Perl ascribes special meaning to many such sequences, and some of
55these are character classes.  That is, they match a single character each,
56provided that the character belongs to the specific set of characters defined
57by the sequence.
58
59Here's a list of the backslash sequences that are character classes.  They
60are discussed in more detail below.  (For the backslash sequences that aren't
61character classes, see L<perlrebackslash>.)
62
63 \d             Match a decimal digit character.
64 \D             Match a non-decimal-digit character.
65 \w             Match a "word" character.
66 \W             Match a non-"word" character.
67 \s             Match a whitespace character.
68 \S             Match a non-whitespace character.
69 \h             Match a horizontal whitespace character.
70 \H             Match a character that isn't horizontal whitespace.
71 \v             Match a vertical whitespace character.
72 \V             Match a character that isn't vertical whitespace.
73 \N             Match a character that isn't a newline.
74 \pP, \p{Prop}  Match a character that has the given Unicode property.
75 \PP, \P{Prop}  Match a character that doesn't have the Unicode property
76
77=head3 \N
78
79C<\N>, available starting in v5.12, like the dot, matches any
80character that is not a newline. The difference is that C<\N> is not influenced
81by the I<single line> regular expression modifier (see L</The dot> above).  Note
82that the form C<\N{...}> may mean something completely different.  When the
83C<{...}> is a L<quantifier|perlre/Quantifiers>, it means to match a non-newline
84character that many times.  For example, C<\N{3}> means to match 3
85non-newlines; C<\N{5,}> means to match 5 or more non-newlines.  But if C<{...}>
86is not a legal quantifier, it is presumed to be a named character.  See
87L<charnames> for those.  For example, none of C<\N{COLON}>, C<\N{4F}>, and
88C<\N{F4}> contain legal quantifiers, so Perl will try to find characters whose
89names are respectively C<COLON>, C<4F>, and C<F4>.
90
91=head3 Digits
92
93C<\d> matches a single character considered to be a decimal I<digit>.
94If the C</a> regular expression modifier is in effect, it matches [0-9].
95Otherwise, it
96matches anything that is matched by C<\p{Digit}>, which includes [0-9].
97(An unlikely possible exception is that under locale matching rules, the
98current locale might not have C<[0-9]> matched by C<\d>, and/or might match
99other characters whose code point is less than 256.  The only such locale
100definitions that are legal would be to match C<[0-9]> plus another set of
10110 consecutive digit characters;  anything else would be in violation of
102the C language standard, but Perl doesn't currently assume anything in
103regard to this.)
104
105What this means is that unless the C</a> modifier is in effect C<\d> not
106only matches the digits '0' - '9', but also Arabic, Devanagari, and
107digits from other languages.  This may cause some confusion, and some
108security issues.
109
110Some digits that C<\d> matches look like some of the [0-9] ones, but
111have different values.  For example, BENGALI DIGIT FOUR (U+09EA) looks
112very much like an ASCII DIGIT EIGHT (U+0038), and LEPCHA DIGIT SIX
113(U+1C46) looks very much like an ASCII DIGIT FIVE (U+0035).  An
114application that
115is expecting only the ASCII digits might be misled, or if the match is
116C<\d+>, the matched string might contain a mixture of digits from
117different writing systems that look like they signify a number different
118than they actually do.  L<Unicode::UCD/num()> can
119be used to safely
120calculate the value, returning C<undef> if the input string contains
121such a mixture.  Otherwise, for example, a displayed price might be
122deliberately different than it appears.
123
124What C<\p{Digit}> means (and hence C<\d> except under the C</a>
125modifier) is C<\p{General_Category=Decimal_Number}>, or synonymously,
126C<\p{General_Category=Digit}>.  Starting with Unicode version 4.1, this
127is the same set of characters matched by C<\p{Numeric_Type=Decimal}>.
128But Unicode also has a different property with a similar name,
129C<\p{Numeric_Type=Digit}>, which matches a completely different set of
130characters.  These characters are things such as C<CIRCLED DIGIT ONE>
131or subscripts, or are from writing systems that lack all ten digits.
132
133The design intent is for C<\d> to exactly match the set of characters
134that can safely be used with "normal" big-endian positional decimal
135syntax, where, for example 123 means one 'hundred', plus two 'tens',
136plus three 'ones'.  This positional notation does not necessarily apply
137to characters that match the other type of "digit",
138C<\p{Numeric_Type=Digit}>, and so C<\d> doesn't match them.
139
140The Tamil digits (U+0BE6 - U+0BEF) can also legally be
141used in old-style Tamil numbers in which they would appear no more than
142one in a row, separated by characters that mean "times 10", "times 100",
143etc.  (See L<https://www.unicode.org/notes/tn21>.)
144
145Any character not matched by C<\d> is matched by C<\D>.
146
147=head3 Word characters
148
149A C<\w> matches a single alphanumeric character (an alphabetic character, or a
150decimal digit); or a connecting punctuation character, such as an
151underscore ("_"); or a "mark" character (like some sort of accent) that
152attaches to one of those.  It does not match a whole word.  To match a
153whole word, use C<\w+>.  This isn't the same thing as matching an
154English word, but in the ASCII range it is the same as a string of
155Perl-identifier characters.
156
157=over
158
159=item If the C</a> modifier is in effect ...
160
161C<\w> matches the 63 characters [a-zA-Z0-9_].
162
163=item otherwise ...
164
165=over
166
167=item For code points above 255 ...
168
169C<\w> matches the same as C<\p{Word}> matches in this range.  That is,
170it matches Thai letters, Greek letters, etc.  This includes connector
171punctuation (like the underscore) which connect two words together, or
172diacritics, such as a C<COMBINING TILDE> and the modifier letters, which
173are generally used to add auxiliary markings to letters.
174
175=item For code points below 256 ...
176
177=over
178
179=item if locale rules are in effect ...
180
181C<\w> matches the platform's native underscore character plus whatever
182the locale considers to be alphanumeric.
183
184=item if, instead, Unicode rules are in effect ...
185
186C<\w> matches exactly what C<\p{Word}> matches.
187
188=item otherwise ...
189
190C<\w> matches [a-zA-Z0-9_].
191
192=back
193
194=back
195
196=back
197
198Which rules apply are determined as described in L<perlre/Which character set modifier is in effect?>.
199
200There are a number of security issues with the full Unicode list of word
201characters.  See L<https://unicode.org/reports/tr36>.
202
203Also, for a somewhat finer-grained set of characters that are in programming
204language identifiers beyond the ASCII range, you may wish to instead use the
205more customized L</Unicode Properties>, C<\p{ID_Start}>,
206C<\p{ID_Continue}>, C<\p{XID_Start}>, and C<\p{XID_Continue}>.  See
207L<https://unicode.org/reports/tr31>.
208
209Any character not matched by C<\w> is matched by C<\W>.
210
211=head3 Whitespace
212
213C<\s> matches any single character considered whitespace.
214
215=over
216
217=item If the C</a> modifier is in effect ...
218
219In all Perl versions, C<\s> matches the 5 characters [\t\n\f\r ]; that
220is, the horizontal tab,
221the newline, the form feed, the carriage return, and the space.
222Starting in Perl v5.18, it also matches the vertical tab, C<\cK>.
223See note C<[1]> below for a discussion of this.
224
225=item otherwise ...
226
227=over
228
229=item For code points above 255 ...
230
231C<\s> matches exactly the code points above 255 shown with an "s" column
232in the table below.
233
234=item For code points below 256 ...
235
236=over
237
238=item if locale rules are in effect ...
239
240C<\s> matches whatever the locale considers to be whitespace.
241
242=item if, instead, Unicode rules are in effect ...
243
244C<\s> matches exactly the characters shown with an "s" column in the
245table below.
246
247=item otherwise ...
248
249C<\s> matches [\t\n\f\r ] and, starting in Perl
250v5.18, the vertical tab, C<\cK>.
251(See note C<[1]> below for a discussion of this.)
252Note that this list doesn't include the non-breaking space.
253
254=back
255
256=back
257
258=back
259
260Which rules apply are determined as described in L<perlre/Which character set modifier is in effect?>.
261
262Any character not matched by C<\s> is matched by C<\S>.
263
264C<\h> matches any character considered horizontal whitespace;
265this includes the platform's space and tab characters and several others
266listed in the table below.  C<\H> matches any character
267not considered horizontal whitespace.  They use the platform's native
268character set, and do not consider any locale that may otherwise be in
269use.
270
271C<\v> matches any character considered vertical whitespace;
272this includes the platform's carriage return and line feed characters (newline)
273plus several other characters, all listed in the table below.
274C<\V> matches any character not considered vertical whitespace.
275They use the platform's native character set, and do not consider any
276locale that may otherwise be in use.
277
278C<\R> matches anything that can be considered a newline under Unicode
279rules. It can match a multi-character sequence. It cannot be used inside
280a bracketed character class; use C<\v> instead (vertical whitespace).
281It uses the platform's
282native character set, and does not consider any locale that may
283otherwise be in use.
284Details are discussed in L<perlrebackslash>.
285
286Note that unlike C<\s> (and C<\d> and C<\w>), C<\h> and C<\v> always match
287the same characters, without regard to other factors, such as the active
288locale or whether the source string is in UTF-8 format.
289
290One might think that C<\s> is equivalent to C<[\h\v]>. This is indeed true
291starting in Perl v5.18, but prior to that, the sole difference was that the
292vertical tab (C<"\cK">) was not matched by C<\s>.
293
294The following table is a complete listing of characters matched by
295C<\s>, C<\h> and C<\v> as of Unicode 14.0.
296
297The first column gives the Unicode code point of the character (in hex format),
298the second column gives the (Unicode) name. The third column indicates
299by which class(es) the character is matched (assuming no locale is in
300effect that changes the C<\s> matching).
301
302 0x0009        CHARACTER TABULATION   h s
303 0x000a              LINE FEED (LF)    vs
304 0x000b             LINE TABULATION    vs  [1]
305 0x000c              FORM FEED (FF)    vs
306 0x000d        CARRIAGE RETURN (CR)    vs
307 0x0020                       SPACE   h s
308 0x0085             NEXT LINE (NEL)    vs  [2]
309 0x00a0              NO-BREAK SPACE   h s  [2]
310 0x1680            OGHAM SPACE MARK   h s
311 0x2000                     EN QUAD   h s
312 0x2001                     EM QUAD   h s
313 0x2002                    EN SPACE   h s
314 0x2003                    EM SPACE   h s
315 0x2004          THREE-PER-EM SPACE   h s
316 0x2005           FOUR-PER-EM SPACE   h s
317 0x2006            SIX-PER-EM SPACE   h s
318 0x2007                FIGURE SPACE   h s
319 0x2008           PUNCTUATION SPACE   h s
320 0x2009                  THIN SPACE   h s
321 0x200a                  HAIR SPACE   h s
322 0x2028              LINE SEPARATOR    vs
323 0x2029         PARAGRAPH SEPARATOR    vs
324 0x202f       NARROW NO-BREAK SPACE   h s
325 0x205f   MEDIUM MATHEMATICAL SPACE   h s
326 0x3000           IDEOGRAPHIC SPACE   h s
327
328=over 4
329
330=item [1]
331
332Prior to Perl v5.18, C<\s> did not match the vertical tab.
333C<[^\S\cK]> (obscurely) matches what C<\s> traditionally did.
334
335=item [2]
336
337NEXT LINE and NO-BREAK SPACE may or may not match C<\s> depending
338on the rules in effect.  See
339L<the beginning of this section|/Whitespace>.
340
341=back
342
343=head3 Unicode Properties
344
345C<\pP> and C<\p{Prop}> are character classes to match characters that fit given
346Unicode properties.  One letter property names can be used in the C<\pP> form,
347with the property name following the C<\p>, otherwise, braces are required.
348When using braces, there is a single form, which is just the property name
349enclosed in the braces, and a compound form which looks like C<\p{name=value}>,
350which means to match if the property "name" for the character has that particular
351"value".
352For instance, a match for a number can be written as C</\pN/> or as
353C</\p{Number}/>, or as C</\p{Number=True}/>.
354Lowercase letters are matched by the property I<Lowercase_Letter> which
355has the short form I<Ll>. They need the braces, so are written as C</\p{Ll}/> or
356C</\p{Lowercase_Letter}/>, or C</\p{General_Category=Lowercase_Letter}/>
357(the underscores are optional).
358C</\pLl/> is valid, but means something different.
359It matches a two character string: a letter (Unicode property C<\pL>),
360followed by a lowercase C<l>.
361
362What a Unicode property matches is never subject to locale rules, and
363if locale rules are not otherwise in effect, the use of a Unicode
364property will force the regular expression into using Unicode rules, if
365it isn't already.
366
367Note that almost all properties are immune to case-insensitive matching.
368That is, adding a C</i> regular expression modifier does not change what
369they match.  But there are two sets that are affected.  The first set is
370C<Uppercase_Letter>,
371C<Lowercase_Letter>,
372and C<Titlecase_Letter>,
373all of which match C<Cased_Letter> under C</i> matching.
374The second set is
375C<Uppercase>,
376C<Lowercase>,
377and C<Titlecase>,
378all of which match C<Cased> under C</i> matching.
379(The difference between these sets is that some things, such as Roman
380numerals, come in both upper and lower case, so they are C<Cased>, but
381aren't considered to be letters, so they aren't C<Cased_Letter>s. They're
382actually C<Letter_Number>s.)
383This set also includes its subsets C<PosixUpper> and C<PosixLower>, both
384of which under C</i> match C<PosixAlpha>.
385
386For more details on Unicode properties, see L<perlunicode/Unicode
387Character Properties>; for a
388complete list of possible properties, see
389L<perluniprops/Properties accessible through \p{} and \P{}>,
390which notes all forms that have C</i> differences.
391It is also possible to define your own properties. This is discussed in
392L<perlunicode/User-Defined Character Properties>.
393
394Unicode properties are defined (surprise!) only on Unicode code points.
395Starting in v5.20, when matching against C<\p> and C<\P>, Perl treats
396non-Unicode code points (those above the legal Unicode maximum of
3970x10FFFF) as if they were typical unassigned Unicode code points.
398
399Prior to v5.20, Perl raised a warning and made all matches fail on
400non-Unicode code points.  This could be somewhat surprising:
401
402 chr(0x110000) =~ \p{ASCII_Hex_Digit=True}     # Fails on Perls < v5.20.
403 chr(0x110000) =~ \p{ASCII_Hex_Digit=False}    # Also fails on Perls
404                                               # < v5.20
405
406Even though these two matches might be thought of as complements, until
407v5.20 they were so only on Unicode code points.
408
409Starting in perl v5.30, wildcards are allowed in Unicode property
410values.  See L<perlunicode/Wildcards in Property Values>.
411
412=head4 Examples
413
414 "a"  =~  /\w/      # Match, "a" is a 'word' character.
415 "7"  =~  /\w/      # Match, "7" is a 'word' character as well.
416 "a"  =~  /\d/      # No match, "a" isn't a digit.
417 "7"  =~  /\d/      # Match, "7" is a digit.
418 " "  =~  /\s/      # Match, a space is whitespace.
419 "a"  =~  /\D/      # Match, "a" is a non-digit.
420 "7"  =~  /\D/      # No match, "7" is not a non-digit.
421 " "  =~  /\S/      # No match, a space is not non-whitespace.
422
423 " "  =~  /\h/      # Match, space is horizontal whitespace.
424 " "  =~  /\v/      # No match, space is not vertical whitespace.
425 "\r" =~  /\v/      # Match, a return is vertical whitespace.
426
427 "a"  =~  /\pL/     # Match, "a" is a letter.
428 "a"  =~  /\p{Lu}/  # No match, /\p{Lu}/ matches upper case letters.
429
430 "\x{0e0b}" =~ /\p{Thai}/  # Match, \x{0e0b} is the character
431                           # 'THAI CHARACTER SO SO', and that's in
432                           # Thai Unicode class.
433 "a"  =~  /\P{Lao}/ # Match, as "a" is not a Laotian character.
434
435It is worth emphasizing that C<\d>, C<\w>, etc, match single characters, not
436complete numbers or words. To match a number (that consists of digits),
437use C<\d+>; to match a word, use C<\w+>.  But be aware of the security
438considerations in doing so, as mentioned above.
439
440=head2 Bracketed Character Classes
441
442The third form of character class you can use in Perl regular expressions
443is the bracketed character class.  In its simplest form, it lists the characters
444that may be matched, surrounded by square brackets, like this: C<[aeiou]>.
445This matches one of C<a>, C<e>, C<i>, C<o> or C<u>.  Like the other
446character classes, exactly one character is matched.* To match
447a longer string consisting of characters mentioned in the character
448class, follow the character class with a L<quantifier|perlre/Quantifiers>.  For
449instance, C<[aeiou]+> matches one or more lowercase English vowels.
450
451Repeating a character in a character class has no
452effect; it's considered to be in the set only once.
453
454Examples:
455
456 "e"  =~  /[aeiou]/        # Match, as "e" is listed in the class.
457 "p"  =~  /[aeiou]/        # No match, "p" is not listed in the class.
458 "ae" =~  /^[aeiou]$/      # No match, a character class only matches
459                           # a single character.
460 "ae" =~  /^[aeiou]+$/     # Match, due to the quantifier.
461
462 -------
463
464* There are two exceptions to a bracketed character class matching a
465single character only.  Each requires special handling by Perl to make
466things work:
467
468=over
469
470=item *
471
472When the class is to match caselessly under C</i> matching rules, and a
473character that is explicitly mentioned inside the class matches a
474multiple-character sequence caselessly under Unicode rules, the class
475will also match that sequence.  For example, Unicode says that the
476letter C<LATIN SMALL LETTER SHARP S> should match the sequence C<ss>
477under C</i> rules.  Thus,
478
479 'ss' =~ /\A\N{LATIN SMALL LETTER SHARP S}\z/i             # Matches
480 'ss' =~ /\A[aeioust\N{LATIN SMALL LETTER SHARP S}]\z/i    # Matches
481
482For this to happen, the class must not be inverted (see L</Negation>)
483and the character must be explicitly specified, and not be part of a
484multi-character range (not even as one of its endpoints).  (L</Character
485Ranges> will be explained shortly.) Therefore,
486
487 'ss' =~ /\A[\0-\x{ff}]\z/ui       # Doesn't match
488 'ss' =~ /\A[\0-\N{LATIN SMALL LETTER SHARP S}]\z/ui   # No match
489 'ss' =~ /\A[\xDF-\xDF]\z/ui   # Matches on ASCII platforms, since
490                               # \xDF is LATIN SMALL LETTER SHARP S,
491                               # and the range is just a single
492                               # element
493
494Note that it isn't a good idea to specify these types of ranges anyway.
495
496=item *
497
498Some names known to C<\N{...}> refer to a sequence of multiple characters,
499instead of the usual single character.  When one of these is included in
500the class, the entire sequence is matched.  For example,
501
502  "\N{TAMIL LETTER KA}\N{TAMIL VOWEL SIGN AU}"
503                              =~ / ^ [\N{TAMIL SYLLABLE KAU}]  $ /x;
504
505matches, because C<\N{TAMIL SYLLABLE KAU}> is a named sequence
506consisting of the two characters matched against.  Like the other
507instance where a bracketed class can match multiple characters, and for
508similar reasons, the class must not be inverted, and the named sequence
509may not appear in a range, even one where it is both endpoints.  If
510these happen, it is a fatal error if the character class is within the
511scope of L<C<use re 'strict>|re/'strict' mode>, or within an extended
512L<C<(?[...])>|/Extended Bracketed Character Classes> class; otherwise
513only the first code point is used (with a C<regexp>-type warning
514raised).
515
516=back
517
518=head3 Special Characters Inside a Bracketed Character Class
519
520Most characters that are meta characters in regular expressions (that
521is, characters that carry a special meaning like C<.>, C<*>, or C<(>) lose
522their special meaning and can be used inside a character class without
523the need to escape them. For instance, C<[()]> matches either an opening
524parenthesis, or a closing parenthesis, and the parens inside the character
525class don't group or capture.  Be aware that, unless the pattern is
526evaluated in single-quotish context, variable interpolation will take
527place before the bracketed class is parsed:
528
529 $, = "\t| ";
530 $x =~ m'[$,]';        # single-quotish: matches '$' or ','
531 $x =~ q{[$,]}'        # same
532 $x =~ m/[$,]/;        # double-quotish: Because we made an
533                       #   assignment to $, above, this now
534                       #   matches "\t", "|", or " "
535
536Characters that may carry a special meaning inside a character class are:
537C<\>, C<^>, C<->, C<[> and C<]>, and are discussed below. They can be
538escaped with a backslash, although this is sometimes not needed, in which
539case the backslash may be omitted.
540
541The sequence C<\b> is special inside a bracketed character class. While
542outside the character class, C<\b> is an assertion indicating a point
543that does not have either two word characters or two non-word characters
544on either side, inside a bracketed character class, C<\b> matches a
545backspace character.
546
547The sequences
548C<\a>,
549C<\c>,
550C<\e>,
551C<\f>,
552C<\n>,
553C<\N{I<NAME>}>,
554C<\N{U+I<hex char>}>,
555C<\r>,
556C<\t>,
557and
558C<\x>
559are also special and have the same meanings as they do outside a
560bracketed character class.
561
562Also, a backslash followed by two or three octal digits is considered an octal
563number.
564
565A C<[> is not special inside a character class, unless it's the start of a
566POSIX character class (see L</POSIX Character Classes> below). It normally does
567not need escaping.
568
569A C<]> is normally either the end of a POSIX character class (see
570L</POSIX Character Classes> below), or it signals the end of the bracketed
571character class.  If you want to include a C<]> in the set of characters, you
572must generally escape it.
573
574However, if the C<]> is the I<first> (or the second if the first
575character is a caret) character of a bracketed character class, it
576does not denote the end of the class (as you cannot have an empty class)
577and is considered part of the set of characters that can be matched without
578escaping.
579
580Examples:
581
582 "+"   =~ /[+?*]/     #  Match, "+" in a character class is not special.
583 "\cH" =~ /[\b]/      #  Match, \b inside in a character class
584                      #  is equivalent to a backspace.
585 "]"   =~ /[][]/      #  Match, as the character class contains
586                      #  both [ and ].
587 "[]"  =~ /[[]]/      #  Match, the pattern contains a character class
588                      #  containing just [, and the character class is
589                      #  followed by a ].
590
591=head3 Bracketed Character Classes and the C</xx> pattern modifier
592
593Normally SPACE and TAB characters have no special meaning inside a
594bracketed character class; they are just added to the list of characters
595matched by the class.  But if the L<C</xx>|perlre/E<sol>x and E<sol>xx>
596pattern modifier is in effect, they are generally ignored and can be
597added to improve readability.  They can't be added in the middle of a
598single construct:
599
600 / [ \x{10 FFFF} ] /xx  # WRONG!
601
602The SPACE in the middle of the hex constant is illegal.
603
604To specify a literal SPACE character, you can escape it with a
605backslash, like:
606
607 /[ a e i o u \  ]/xx
608
609This matches the English vowels plus the SPACE character.
610
611For clarity, you should already have been using C<\t> to specify a
612literal tab, and C<\t> is unaffected by C</xx>.
613
614=head3 Character Ranges
615
616It is not uncommon to want to match a range of characters. Luckily, instead
617of listing all characters in the range, one may use the hyphen (C<->).
618If inside a bracketed character class you have two characters separated
619by a hyphen, it's treated as if all characters between the two were in
620the class. For instance, C<[0-9]> matches any ASCII digit, and C<[a-m]>
621matches any lowercase letter from the first half of the ASCII alphabet.
622
623Note that the two characters on either side of the hyphen are not
624necessarily both letters or both digits. Any character is possible,
625although not advisable.  C<['-?]> contains a range of characters, but
626most people will not know which characters that means.  Furthermore,
627such ranges may lead to portability problems if the code has to run on
628a platform that uses a different character set, such as EBCDIC.
629
630If a hyphen in a character class cannot syntactically be part of a range, for
631instance because it is the first or the last character of the character class,
632or if it immediately follows a range, the hyphen isn't special, and so is
633considered a character to be matched literally.  If you want a hyphen in
634your set of characters to be matched and its position in the class is such
635that it could be considered part of a range, you must escape that hyphen
636with a backslash.
637
638Examples:
639
640 [a-z]       #  Matches a character that is a lower case ASCII letter.
641 [a-fz]      #  Matches any letter between 'a' and 'f' (inclusive) or
642             #  the letter 'z'.
643 [-z]        #  Matches either a hyphen ('-') or the letter 'z'.
644 [a-f-m]     #  Matches any letter between 'a' and 'f' (inclusive), the
645             #  hyphen ('-'), or the letter 'm'.
646 ['-?]       #  Matches any of the characters  '()*+,-./0123456789:;<=>?
647             #  (But not on an EBCDIC platform).
648 [\N{APOSTROPHE}-\N{QUESTION MARK}]
649             #  Matches any of the characters  '()*+,-./0123456789:;<=>?
650             #  even on an EBCDIC platform.
651 [\N{U+27}-\N{U+3F}] # Same. (U+27 is "'", and U+3F is "?")
652
653As the final two examples above show, you can achieve portability to
654non-ASCII platforms by using the C<\N{...}> form for the range
655endpoints.  These indicate that the specified range is to be interpreted
656using Unicode values, so C<[\N{U+27}-\N{U+3F}]> means to match
657C<\N{U+27}>, C<\N{U+28}>, C<\N{U+29}>, ..., C<\N{U+3D}>, C<\N{U+3E}>,
658and C<\N{U+3F}>, whatever the native code point versions for those are.
659These are called "Unicode" ranges.  If either end is of the C<\N{...}>
660form, the range is considered Unicode.  A C<regexp> warning is raised
661under C<S<"use re 'strict'">> if the other endpoint is specified
662non-portably:
663
664 [\N{U+00}-\x09]    # Warning under re 'strict'; \x09 is non-portable
665 [\N{U+00}-\t]      # No warning;
666
667Both of the above match the characters C<\N{U+00}> C<\N{U+01}>, ...
668C<\N{U+08}>, C<\N{U+09}>, but the C<\x09> looks like it could be a
669mistake so the warning is raised (under C<re 'strict'>) for it.
670
671Perl also guarantees that the ranges C<A-Z>, C<a-z>, C<0-9>, and any
672subranges of these match what an English-only speaker would expect them
673to match on any platform.  That is, C<[A-Z]> matches the 26 ASCII
674uppercase letters;
675C<[a-z]> matches the 26 lowercase letters; and C<[0-9]> matches the 10
676digits.  Subranges, like C<[h-k]>, match correspondingly, in this case
677just the four letters C<"h">, C<"i">, C<"j">, and C<"k">.  This is the
678natural behavior on ASCII platforms where the code points (ordinal
679values) for C<"h"> through C<"k"> are consecutive integers (0x68 through
6800x6B).  But special handling to achieve this may be needed on platforms
681with a non-ASCII native character set.  For example, on EBCDIC
682platforms, the code point for C<"h"> is 0x88, C<"i"> is 0x89, C<"j"> is
6830x91, and C<"k"> is 0x92.   Perl specially treats C<[h-k]> to exclude the
684seven code points in the gap: 0x8A through 0x90.  This special handling is
685only invoked when the range is a subrange of one of the ASCII uppercase,
686lowercase, and digit ranges, AND each end of the range is expressed
687either as a literal, like C<"A">, or as a named character (C<\N{...}>,
688including the C<\N{U+...> form).
689
690EBCDIC Examples:
691
692 [i-j]               #  Matches either "i" or "j"
693 [i-\N{LATIN SMALL LETTER J}]  # Same
694 [i-\N{U+6A}]        #  Same
695 [\N{U+69}-\N{U+6A}] #  Same
696 [\x{89}-\x{91}]     #  Matches 0x89 ("i"), 0x8A .. 0x90, 0x91 ("j")
697 [i-\x{91}]          #  Same
698 [\x{89}-j]          #  Same
699 [i-J]               #  Matches, 0x89 ("i") .. 0xC1 ("J"); special
700                     #  handling doesn't apply because range is mixed
701                     #  case
702
703=head3 Negation
704
705It is also possible to instead list the characters you do not want to
706match. You can do so by using a caret (C<^>) as the first character in the
707character class. For instance, C<[^a-z]> matches any character that is not a
708lowercase ASCII letter, which therefore includes more than a million
709Unicode code points.  The class is said to be "negated" or "inverted".
710
711This syntax make the caret a special character inside a bracketed character
712class, but only if it is the first character of the class. So if you want
713the caret as one of the characters to match, either escape the caret or
714else don't list it first.
715
716In inverted bracketed character classes, Perl ignores the Unicode rules
717that normally say that named sequence, and certain characters should
718match a sequence of multiple characters use under caseless C</i>
719matching.  Following those rules could lead to highly confusing
720situations:
721
722 "ss" =~ /^[^\xDF]+$/ui;   # Matches!
723
724This should match any sequences of characters that aren't C<\xDF> nor
725what C<\xDF> matches under C</i>.  C<"s"> isn't C<\xDF>, but Unicode
726says that C<"ss"> is what C<\xDF> matches under C</i>.  So which one
727"wins"? Do you fail the match because the string has C<ss> or accept it
728because it has an C<s> followed by another C<s>?  Perl has chosen the
729latter.  (See note in L</Bracketed Character Classes> above.)
730
731Examples:
732
733 "e"  =~  /[^aeiou]/   #  No match, the 'e' is listed.
734 "x"  =~  /[^aeiou]/   #  Match, as 'x' isn't a lowercase vowel.
735 "^"  =~  /[^^]/       #  No match, matches anything that isn't a caret.
736 "^"  =~  /[x^]/       #  Match, caret is not special here.
737
738=head3 Backslash Sequences
739
740You can put any backslash sequence character class (with the exception of
741C<\N> and C<\R>) inside a bracketed character class, and it will act just
742as if you had put all characters matched by the backslash sequence inside the
743character class. For instance, C<[a-f\d]> matches any decimal digit, or any
744of the lowercase letters between 'a' and 'f' inclusive.
745
746C<\N> within a bracketed character class must be of the forms C<\N{I<name>}>
747or C<\N{U+I<hex char>}>, and NOT be the form that matches non-newlines,
748for the same reason that a dot C<.> inside a bracketed character class loses
749its special meaning: it matches nearly anything, which generally isn't what you
750want to happen.
751
752
753Examples:
754
755 /[\p{Thai}\d]/     # Matches a character that is either a Thai
756                    # character, or a digit.
757 /[^\p{Arabic}()]/  # Matches a character that is neither an Arabic
758                    # character, nor a parenthesis.
759
760Backslash sequence character classes cannot form one of the endpoints
761of a range.  Thus, you can't say:
762
763 /[\p{Thai}-\d]/     # Wrong!
764
765=head3 POSIX Character Classes
766X<character class> X<\p> X<\p{}>
767X<alpha> X<alnum> X<ascii> X<blank> X<cntrl> X<digit> X<graph>
768X<lower> X<print> X<punct> X<space> X<upper> X<word> X<xdigit>
769
770POSIX character classes have the form C<[:class:]>, where I<class> is the
771name, and the C<[:> and C<:]> delimiters. POSIX character classes only appear
772I<inside> bracketed character classes, and are a convenient and descriptive
773way of listing a group of characters.
774
775Be careful about the syntax,
776
777 # Correct:
778 $string =~ /[[:alpha:]]/
779
780 # Incorrect (will warn):
781 $string =~ /[:alpha:]/
782
783The latter pattern would be a character class consisting of a colon,
784and the letters C<a>, C<l>, C<p> and C<h>.
785
786POSIX character classes can be part of a larger bracketed character class.
787For example,
788
789 [01[:alpha:]%]
790
791is valid and matches '0', '1', any alphabetic character, and the percent sign.
792
793Perl recognizes the following POSIX character classes:
794
795 alpha  Any alphabetical character (e.g., [A-Za-z]).
796 alnum  Any alphanumeric character (e.g., [A-Za-z0-9]).
797 ascii  Any character in the ASCII character set.
798 blank  Any horizontal whitespace character (e.g. space or horizontal
799        tab ("\t")).
800 cntrl  Any control character.  See Note [2] below.
801 digit  Any decimal digit (e.g., [0-9]), equivalent to "\d".
802 graph  Any printable character, excluding a space.  See Note [3] below.
803 lower  Any lowercase character (e.g., [a-z]).
804 print  Any printable character, including a space.  See Note [4] below.
805 punct  Any graphical character excluding "word" characters.  Note [5].
806 space  Any whitespace character. "\s" including the vertical tab
807        ("\cK").
808 upper  Any uppercase character (e.g., [A-Z]).
809 word   A Perl extension (e.g., [A-Za-z0-9_]), equivalent to "\w".
810 xdigit Any hexadecimal digit (e.g., [0-9a-fA-F]).  Note [7].
811
812Like the L<Unicode properties|/Unicode Properties>, most of the POSIX
813properties match the same regardless of whether case-insensitive (C</i>)
814matching is in effect or not.  The two exceptions are C<[:upper:]> and
815C<[:lower:]>.  Under C</i>, they each match the union of C<[:upper:]> and
816C<[:lower:]>.
817
818Most POSIX character classes have two Unicode-style C<\p> property
819counterparts.  (They are not official Unicode properties, but Perl extensions
820derived from official Unicode properties.)  The table below shows the relation
821between POSIX character classes and these counterparts.
822
823One counterpart, in the column labelled "ASCII-range Unicode" in
824the table, matches only characters in the ASCII character set.
825
826The other counterpart, in the column labelled "Full-range Unicode", matches any
827appropriate characters in the full Unicode character set.  For example,
828C<\p{Alpha}> matches not just the ASCII alphabetic characters, but any
829character in the entire Unicode character set considered alphabetic.
830An entry in the column labelled "backslash sequence" is a (short)
831equivalent.
832
833 [[:...:]]      ASCII-range          Full-range  backslash  Note
834                 Unicode              Unicode     sequence
835 -----------------------------------------------------
836   alpha      \p{PosixAlpha}       \p{XPosixAlpha}
837   alnum      \p{PosixAlnum}       \p{XPosixAlnum}
838   ascii      \p{ASCII}
839   blank      \p{PosixBlank}       \p{XPosixBlank}  \h      [1]
840                                   or \p{HorizSpace}        [1]
841   cntrl      \p{PosixCntrl}       \p{XPosixCntrl}          [2]
842   digit      \p{PosixDigit}       \p{XPosixDigit}  \d
843   graph      \p{PosixGraph}       \p{XPosixGraph}          [3]
844   lower      \p{PosixLower}       \p{XPosixLower}
845   print      \p{PosixPrint}       \p{XPosixPrint}          [4]
846   punct      \p{PosixPunct}       \p{XPosixPunct}          [5]
847              \p{PerlSpace}        \p{XPerlSpace}   \s      [6]
848   space      \p{PosixSpace}       \p{XPosixSpace}          [6]
849   upper      \p{PosixUpper}       \p{XPosixUpper}
850   word       \p{PosixWord}        \p{XPosixWord}   \w
851   xdigit     \p{PosixXDigit}      \p{XPosixXDigit}         [7]
852
853=over 4
854
855=item [1]
856
857C<\p{Blank}> and C<\p{HorizSpace}> are synonyms.
858
859=item [2]
860
861Control characters don't produce output as such, but instead usually control
862the terminal somehow: for example, newline and backspace are control characters.
863On ASCII platforms, in the ASCII range, characters whose code points are
864between 0 and 31 inclusive, plus 127 (C<DEL>) are control characters; on
865EBCDIC platforms, their counterparts are control characters.
866
867=item [3]
868
869Any character that is I<graphical>, that is, visible. This class consists
870of all alphanumeric characters and all punctuation characters.
871
872=item [4]
873
874All printable characters, which is the set of all graphical characters
875plus those whitespace characters which are not also controls.
876
877=item [5]
878
879C<\p{PosixPunct}> and C<[[:punct:]]> in the ASCII range match all
880non-controls, non-alphanumeric, non-space characters:
881C<[-!"#$%&'()*+,./:;<=E<gt>?@[\\\]^_`{|}~]> (although if a locale is in effect,
882it could alter the behavior of C<[[:punct:]]>).
883
884The similarly named property, C<\p{Punct}>, matches a somewhat different
885set in the ASCII range, namely
886C<[-!"#%&'()*,./:;?@[\\\]_{}]>.  That is, it is missing the nine
887characters C<[$+E<lt>=E<gt>^`|~]>.
888This is because Unicode splits what POSIX considers to be punctuation into two
889categories, Punctuation and Symbols.
890
891C<\p{XPosixPunct}> and (under Unicode rules) C<[[:punct:]]>, match what
892C<\p{PosixPunct}> matches in the ASCII range, plus what C<\p{Punct}>
893matches.  This is different than strictly matching according to
894C<\p{Punct}>.  Another way to say it is that
895if Unicode rules are in effect, C<[[:punct:]]> matches all characters
896that Unicode considers punctuation, plus all ASCII-range characters that
897Unicode considers symbols.
898
899=item [6]
900
901C<\p{XPerlSpace}> and C<\p{Space}> match identically starting with Perl
902v5.18.  In earlier versions, these differ only in that in non-locale
903matching, C<\p{XPerlSpace}> did not match the vertical tab, C<\cK>.
904Same for the two ASCII-only range forms.
905
906=item [7]
907
908Unlike C<[[:digit:]]> which matches digits in many writing systems, such
909as Thai and Devanagari, there are currently only two sets of hexadecimal
910digits, and it is unlikely that more will be added.  This is because you
911not only need the ten digits, but also the six C<[A-F]> (and C<[a-f]>)
912to correspond.  That means only the Latin script is suitable for these,
913and Unicode has only two sets of these, the familiar ASCII set, and the
914fullwidth forms starting at U+FF10 (FULLWIDTH DIGIT ZERO).
915
916=back
917
918There are various other synonyms that can be used besides the names
919listed in the table.  For example, C<\p{XPosixAlpha}> can be written as
920C<\p{Alpha}>.  All are listed in
921L<perluniprops/Properties accessible through \p{} and \P{}>.
922
923Both the C<\p> counterparts always assume Unicode rules are in effect.
924On ASCII platforms, this means they assume that the code points from 128
925to 255 are Latin-1, and that means that using them under locale rules is
926unwise unless the locale is guaranteed to be Latin-1 or UTF-8.  In contrast, the
927POSIX character classes are useful under locale rules.  They are
928affected by the actual rules in effect, as follows:
929
930=over
931
932=item If the C</a> modifier, is in effect ...
933
934Each of the POSIX classes matches exactly the same as their ASCII-range
935counterparts.
936
937=item otherwise ...
938
939=over
940
941=item For code points above 255 ...
942
943The POSIX class matches the same as its Full-range counterpart.
944
945=item For code points below 256 ...
946
947=over
948
949=item if locale rules are in effect ...
950
951The POSIX class matches according to the locale, except:
952
953=over
954
955=item C<word>
956
957also includes the platform's native underscore character, no matter what
958the locale is.
959
960=item C<ascii>
961
962on platforms that don't have the POSIX C<ascii> extension, this matches
963just the platform's native ASCII-range characters.
964
965=item C<blank>
966
967on platforms that don't have the POSIX C<blank> extension, this matches
968just the platform's native tab and space characters.
969
970=back
971
972=item if, instead, Unicode rules are in effect ...
973
974The POSIX class matches the same as the Full-range counterpart.
975
976=item otherwise ...
977
978The POSIX class matches the same as the ASCII range counterpart.
979
980=back
981
982=back
983
984=back
985
986Which rules apply are determined as described in
987L<perlre/Which character set modifier is in effect?>.
988
989=head4 Negation of POSIX character classes
990X<character class, negation>
991
992A Perl extension to the POSIX character class is the ability to
993negate it. This is done by prefixing the class name with a caret (C<^>).
994Some examples:
995
996     POSIX         ASCII-range     Full-range  backslash
997                    Unicode         Unicode    sequence
998 -----------------------------------------------------
999 [[:^digit:]]   \P{PosixDigit}  \P{XPosixDigit}   \D
1000 [[:^space:]]   \P{PosixSpace}  \P{XPosixSpace}
1001                \P{PerlSpace}   \P{XPerlSpace}    \S
1002 [[:^word:]]    \P{PerlWord}    \P{XPosixWord}    \W
1003
1004The backslash sequence can mean either ASCII- or Full-range Unicode,
1005depending on various factors as described in L<perlre/Which character set modifier is in effect?>.
1006
1007=head4 [= =] and [. .]
1008
1009Perl recognizes the POSIX character classes C<[=class=]> and
1010C<[.class.]>, but does not (yet?) support them.  Any attempt to use
1011either construct raises an exception.
1012
1013=head4 Examples
1014
1015 /[[:digit:]]/            # Matches a character that is a digit.
1016 /[01[:lower:]]/          # Matches a character that is either a
1017                          # lowercase letter, or '0' or '1'.
1018 /[[:digit:][:^xdigit:]]/ # Matches a character that can be anything
1019                          # except the letters 'a' to 'f' and 'A' to
1020                          # 'F'.  This is because the main character
1021                          # class is composed of two POSIX character
1022                          # classes that are ORed together, one that
1023                          # matches any digit, and the other that
1024                          # matches anything that isn't a hex digit.
1025                          # The OR adds the digits, leaving only the
1026                          # letters 'a' to 'f' and 'A' to 'F' excluded.
1027
1028=head3 Extended Bracketed Character Classes
1029X<character class>
1030X<set operations>
1031
1032This is a fancy bracketed character class that can be used for more
1033readable and less error-prone classes, and to perform set operations,
1034such as intersection. An example is
1035
1036 /(?[ \p{Thai} & \p{Digit} ])/
1037
1038This will match all the digit characters that are in the Thai script.
1039
1040This feature became available in Perl 5.18, as experimental; accepted in
10415.36.
1042
1043The rules used by L<C<use re 'strict>|re/'strict' mode> apply to this
1044construct.
1045
1046We can extend the example above:
1047
1048 /(?[ ( \p{Thai} + \p{Lao} ) & \p{Digit} ])/
1049
1050This matches digits that are in either the Thai or Laotian scripts.
1051
1052Notice the white space in these examples.  This construct always has
1053the C<E<sol>xx> modifier turned on within it.
1054
1055The available binary operators are:
1056
1057 &    intersection
1058 +    union
1059 |    another name for '+', hence means union
1060 -    subtraction (the result matches the set consisting of those
1061      code points matched by the first operand, excluding any that
1062      are also matched by the second operand)
1063 ^    symmetric difference (the union minus the intersection).  This
1064      is like an exclusive or, in that the result is the set of code
1065      points that are matched by either, but not both, of the
1066      operands.
1067
1068There is one unary operator:
1069
1070 !    complement
1071
1072All the binary operators left associate; C<"&"> is higher precedence
1073than the others, which all have equal precedence.  The unary operator
1074right associates, and has highest precedence.  Thus this follows the
1075normal Perl precedence rules for logical operators.  Use parentheses to
1076override the default precedence and associativity.
1077
1078The main restriction is that everything is a metacharacter.  Thus,
1079you cannot refer to single characters by doing something like this:
1080
1081 /(?[ a + b ])/ # Syntax error!
1082
1083The easiest way to specify an individual typable character is to enclose
1084it in brackets:
1085
1086 /(?[ [a] + [b] ])/
1087
1088(This is the same thing as C<[ab]>.)  You could also have said the
1089equivalent:
1090
1091 /(?[[ a b ]])/
1092
1093(You can, of course, specify single characters by using, C<\x{...}>,
1094C<\N{...}>, etc.)
1095
1096This last example shows the use of this construct to specify an ordinary
1097bracketed character class without additional set operations.  Note the
1098white space within it.  This is allowed because C<E<sol>xx> is
1099automatically turned on within this construct.
1100
1101All the other escapes accepted by normal bracketed character classes are
1102accepted here as well.
1103
1104Because this construct compiles under
1105L<C<use re 'strict>|re/'strict' mode>,  unrecognized escapes that
1106generate warnings in normal classes are fatal errors here, as well as
1107all other warnings from these class elements, as well as some
1108practices that don't currently warn outside C<re 'strict'>.  For example
1109you cannot say
1110
1111 /(?[ [ \xF ] ])/     # Syntax error!
1112
1113You have to have two hex digits after a braceless C<\x> (use a leading
1114zero to make two).  These restrictions are to lower the incidence of
1115typos causing the class to not match what you thought it would.
1116
1117If a regular bracketed character class contains a C<\p{}> or C<\P{}> and
1118is matched against a non-Unicode code point, a warning may be
1119raised, as the result is not Unicode-defined.  No such warning will come
1120when using this extended form.
1121
1122The final difference between regular bracketed character classes and
1123these, is that it is not possible to get these to match a
1124multi-character fold.  Thus,
1125
1126 /(?[ [\xDF] ])/iu
1127
1128does not match the string C<ss>.
1129
1130You don't have to enclose POSIX class names inside double brackets,
1131hence both of the following work:
1132
1133 /(?[ [:word:] - [:lower:] ])/
1134 /(?[ [[:word:]] - [[:lower:]] ])/
1135
1136Any contained POSIX character classes, including things like C<\w> and C<\D>
1137respect the C<E<sol>a> (and C<E<sol>aa>) modifiers.
1138
1139Note that C<< (?[ ]) >> is a regex-compile-time construct.  Any attempt
1140to use something which isn't knowable at the time the containing regular
1141expression is compiled is a fatal error.  In practice, this means
1142just three limitations:
1143
1144=over 4
1145
1146=item 1
1147
1148When compiled within the scope of C<use locale> (or the C<E<sol>l> regex
1149modifier), this construct assumes that the execution-time locale will be
1150a UTF-8 one, and the generated pattern always uses Unicode rules.  What
1151gets matched or not thus isn't dependent on the actual runtime locale, so
1152tainting is not enabled.  But a C<locale> category warning is raised
1153if the runtime locale turns out to not be UTF-8.
1154
1155=item 2
1156
1157Any
1158L<user-defined property|perlunicode/"User-Defined Character Properties">
1159used must be already defined by the time the regular expression is
1160compiled (but note that this construct can be used instead of such
1161properties).
1162
1163=item 3
1164
1165A regular expression that otherwise would compile
1166using C<E<sol>d> rules, and which uses this construct will instead
1167use C<E<sol>u>.  Thus this construct tells Perl that you don't want
1168C<E<sol>d> rules for the entire regular expression containing it.
1169
1170=back
1171
1172Note that skipping white space applies only to the interior of this
1173construct.  There must not be any space between any of the characters
1174that form the initial C<(?[>.  Nor may there be space between the
1175closing C<])> characters.
1176
1177Just as in all regular expressions, the pattern can be built up by
1178including variables that are interpolated at regex compilation time.
1179But currently each such sub-component should be an already-compiled
1180extended bracketed character class.
1181
1182 my $thai_or_lao = qr/(?[ \p{Thai} + \p{Lao} ])/;
1183 ...
1184 qr/(?[ \p{Digit} & $thai_or_lao ])/;
1185
1186If you interpolate something else, the pattern may still compile (or it
1187may die), but if it compiles, it very well may not behave as you would
1188expect:
1189
1190 my $thai_or_lao = '\p{Thai} + \p{Lao}';
1191 qr/(?[ \p{Digit} & $thai_or_lao ])/;
1192
1193compiles to
1194
1195 qr/(?[ \p{Digit} & \p{Thai} + \p{Lao} ])/;
1196
1197This does not have the effect that someone reading the source code
1198would likely expect, as the intersection applies just to C<\p{Thai}>,
1199excluding the Laotian.
1200
1201Due to the way that Perl parses things, your parentheses and brackets
1202may need to be balanced, even including comments.  If you run into any
1203examples, please submit them to L<https://github.com/Perl/perl5/issues>,
1204so that we can have a concrete example for this man page.
1205