MediaWiki REL1_32
|
A collection of static methods to play with strings. More...
Static Public Member Functions | |
static | delimiterExplode ( $startDelim, $endDelim, $separator, $subject, $nested=false) |
Explode a string, but ignore any instances of the separator inside the given start and end delimiters, which may optionally nest. | |
static | delimiterReplace ( $startDelim, $endDelim, $replace, $subject, $flags='') |
Perform an operation equivalent to preg_replace() with flags. | |
static | delimiterReplaceCallback ( $startDelim, $endDelim, $callback, $subject, $flags='') |
Perform an operation equivalent to preg_replace_callback() | |
static | escapeRegexReplacement ( $string) |
Escape a string to make it suitable for inclusion in a preg_replace() replacement parameter. | |
static | explode ( $separator, $subject) |
Workalike for explode() with limited memory usage. | |
static | explodeMarkup ( $separator, $text) |
More or less "markup-safe" explode() Ignores any instances of the separator inside <...> | |
static | hungryDelimiterReplace ( $startDelim, $endDelim, $replace, $subject) |
Perform an operation equivalent to preg_replace() | |
static | isUtf8 ( $value) |
Test whether a string is valid UTF-8. | |
static | replaceMarkup ( $search, $replace, $text) |
More or less "markup-safe" str_replace() Ignores any instances of the separator inside <...> | |
A collection of static methods to play with strings.
Definition at line 26 of file StringUtils.php.
|
static |
Explode a string, but ignore any instances of the separator inside the given start and end delimiters, which may optionally nest.
The delimiters are literal strings, not regular expressions.
string | $startDelim | Start delimiter |
string | $endDelim | End delimiter |
string | $separator | Separator string for the explode. |
string | $subject | Subject string to explode. |
bool | $nested | True iff the delimiters are allowed to nest. |
Definition at line 56 of file StringUtils.php.
Referenced by Parser\makeImage(), and Parser\renderImageGallery().
|
static |
Perform an operation equivalent to preg_replace()
with flags.
Matches this code:
preg_replace( "!$startDelim(.*)$endDelim!$flags", $replace, $subject );
string | $startDelim | Start delimiter regular expression |
string | $endDelim | End delimiter regular expression |
string | $replace | Replacement string. May contain $1, which will be replaced by the text between the delimiters |
string | $subject | String to search |
string | $flags | Regular expression flags |
Definition at line 245 of file StringUtils.php.
References $matches, array(), delimiterReplaceCallback(), and use.
Referenced by Sanitizer\normalizeCss(), CoreTagHooks\pre(), and Parser\stripSectionName().
|
static |
Perform an operation equivalent to preg_replace_callback()
Matches this code:
preg_replace_callback( "!$startDelim(.*)$endDelim!s$flags", $callback, $subject );
If the start delimiter ends with an initial substring of the end delimiter, e.g. in the case of C-style comments, the behavior differs from the model regex. In this implementation, the end must share no characters with the start, so e.g. /*\\/
is not considered to be both the start and end of a comment. /*\\/xy/*\\/
is considered to be a single comment with contents /xy/
.
The implementation of delimiterReplaceCallback() is slower than hungryDelimiterReplace() but uses far less memory. The delimiters are literal strings, not regular expressions.
string | $startDelim | Start delimiter |
string | $endDelim | End delimiter |
callable | $callback | Function to call on each match |
string | $subject | |
string | $flags | Regular expression flags |
InvalidArgumentException |
Definition at line 154 of file StringUtils.php.
References $output.
Referenced by delimiterReplace(), explodeMarkup(), and replaceMarkup().
|
static |
Escape a string to make it suitable for inclusion in a preg_replace() replacement parameter.
string | $string |
Definition at line 323 of file StringUtils.php.
Referenced by MovePageForm\doSubmit(), Linker\formatLinksInComment(), Title\moveSubpages(), MagicWord\replace(), SyncFileBackend\replaceNamePaths(), FileBackendMultiWrite\substPaths(), and FileBackendMultiWrite\unsubstPaths().
|
static |
Workalike for explode() with limited memory usage.
string | $separator | |
string | $subject |
Definition at line 336 of file StringUtils.php.
References explode().
Referenced by LanguageConverter\autoConvert(), Parser\doAllQuotes(), Parser\doTableStuff(), BlockLevelPass\execute(), explode(), explodeMarkup(), GenerateCollationData\generateFirstChars(), hungryDelimiterReplace(), LanguageConverter\parseCachedTable(), ConverterRule\parseFlags(), Parser\renderImageGallery(), and Parser\replaceInternalLinks2().
|
static |
More or less "markup-safe" explode() Ignores any instances of the separator inside <...>
string | $separator | |
string | $text |
Definition at line 262 of file StringUtils.php.
References $matches, array(), as, delimiterReplaceCallback(), explode(), and use.
|
static |
Perform an operation equivalent to preg_replace()
Matches this code:
preg_replace( "!$startDelim(.*?)$endDelim!", $replace, $subject );
..except that it's worst-case O(N) instead of O(N^2). Compared to delimiterReplace(), this implementation is fast but memory-hungry and inflexible. The memory requirements are such that I don't recommend using it on anything but guaranteed small chunks of text.
string | $startDelim | |
string | $endDelim | |
string | $replace | |
string | $subject |
Definition at line 115 of file StringUtils.php.
|
static |
Test whether a string is valid UTF-8.
The function check for invalid byte sequences, overlong encoding but not for different normalisations.
string | $value | String to check |
Definition at line 41 of file StringUtils.php.
References $value.
Referenced by Language\checkTitleEncoding(), DatabaseOracle\doQuery(), and StringUtilsTest\testIsUtf8().
|
static |
More or less "markup-safe" str_replace() Ignores any instances of the separator inside <...>
string | $search | |
string | $replace | |
string | $text |
Definition at line 294 of file StringUtils.php.
References $matches, array(), delimiterReplaceCallback(), and use.
Referenced by Parser\doTableStuff().