Delimitatori
Quando si usano le funzioni PCRE, il pattern deve essere racchiuso
da delimitatori. Un delimitatore può essere qualsiasi carattere
non alfanumerico, esclusi il backslash e i caratteri di spazio (spazio, tab, ecc.).
Delimitatori usati spesso sono la barra "slash" (/
), il cancelletto "hash"
(#
) e la tilde (~
). I
seguenti sono esempi di delimitazioni valide dei pattern:
If the delimiter needs to be matched inside the pattern it must be
escaped using a backslash. If the delimiter appears often inside the
pattern, it is a good idea to choose another delimiter in order to increase
readability.
The
preg_quote() function may be used to escape a string
for injection into a pattern and its optional second parameter may be used
to specify the delimiter to be escaped.
In addition to the aforementioned delimiters, it is also possible to use
bracket style delimiters where the opening and closing brackets are the
starting and ending delimiter, respectively.
You may add pattern
modifiers after the ending delimiter. The following is an example
of case-insensitive matching:
Pedro Gimeno ¶10 years ago
Note that bracket style opening and closing delimiters aren't a 100% problem-free solution, as they need to be escaped when they aren't in matching pairs within the expression. That mismatch can happen when they appear inside character classes [...], as most meta-characters lose their special meaning. Consider these examples:<?php preg_match('{[{]}', ''); preg_match('{[}]}', ''); preg_match('{[}{]}', ''); ?>Escaping them solves it:<?php preg_match('{[\{]}', ''); preg_match('{[}]}', ''); preg_match('{[\}\{]}', ''); ?>
Munin ¶9 years ago
preg_match('{[}]}', ''); // Warning: preg_match(): Unknown modifier ']'preg_match('{[\}]}', ''); // OK
Revo ¶6 years ago
Note that angle brackets `<>` shouldn't be used as delimiters whenever you will have to invoke advanced clusters like atomic groups or lookbehinds because their including angle bracket doesn't come in pair and escaping doesn't help either.