3 * A collection of static methods to play with strings.
7 * Perform an operation equivalent to
9 * preg_replace( "!$startDelim(.*?)$endDelim!", $replace, $subject );
11 * except that it's worst-case O(N) instead of O(N^2)
13 * Compared to delimiterReplace(), this implementation is fast but memory-
14 * hungry and inflexible. The memory requirements are such that I don't
15 * recommend using it on anything but guaranteed small chunks of text.
17 static function hungryDelimiterReplace( $startDelim, $endDelim, $replace, $subject ) {
18 $segments = explode( $startDelim, $subject );
19 $output = array_shift( $segments );
20 foreach ( $segments as $s ) {
21 $endDelimPos = strpos( $s, $endDelim );
22 if ( $endDelimPos === false ) {
23 $output .= $startDelim . $s;
25 $output .= $replace . substr( $s, $endDelimPos +
strlen( $endDelim ) );
32 * Perform an operation equivalent to
34 * preg_replace_callback( "!$startDelim(.*)$endDelim!s$flags", $callback, $subject )
36 * This implementation is slower than hungryDelimiterReplace but uses far less
37 * memory. The delimiters are literal strings, not regular expressions.
39 * @param string $flags Regular expression flags
41 # If the start delimiter ends with an initial substring of the end delimiter,
42 # e.g. in the case of C-style comments, the behaviour differs from the model
43 # regex. In this implementation, the end must share no characters with the
44 # start, so e.g. /*/ is not considered to be both the start and end of a
45 # comment. /*/xy/*/ is considered to be a single comment with contents /xy/.
46 static function delimiterReplaceCallback( $startDelim, $endDelim, $callback, $subject, $flags = '' ) {
51 $encStart = preg_quote( $startDelim, '!' );
52 $encEnd = preg_quote( $endDelim, '!' );
53 $strcmp = strpos( $flags, 'i' ) === false ?
'strcmp' : 'strcasecmp';
54 $endLength = strlen( $endDelim );
57 while ( $inputPos < strlen( $subject ) &&
58 preg_match( "!($encStart)|($encEnd)!S$flags", $subject, $m, PREG_OFFSET_CAPTURE
, $inputPos ) )
60 $tokenOffset = $m[0][1];
61 if ( $m[1][0] != '' ) {
63 $strcmp( $endDelim, substr( $subject, $tokenOffset, $endLength ) ) == 0 )
65 # An end match is present at the same location
67 $tokenLength = $endLength;
70 $tokenLength = strlen( $m[0][0] );
72 } elseif ( $m[2][0] != '' ) {
74 $tokenLength = strlen( $m[0][0] );
76 throw new MWException( 'Invalid delimiter given to ' . __METHOD__
);
79 if ( $tokenType == 'start' ) {
80 $inputPos = $tokenOffset +
$tokenLength;
81 # Only move the start position if we haven't already found a start
82 # This means that START START END matches outer pair
85 # Write out the non-matching section
86 $output .= substr( $subject, $outputPos, $tokenOffset - $outputPos );
87 $outputPos = $tokenOffset;
88 $contentPos = $inputPos;
91 } elseif ( $tokenType == 'end' ) {
94 $output .= call_user_func( $callback, array(
95 substr( $subject, $outputPos, $tokenOffset +
$tokenLength - $outputPos ),
96 substr( $subject, $contentPos, $tokenOffset - $contentPos )
100 # Non-matching end, write it out
101 $output .= substr( $subject, $inputPos, $tokenOffset +
$tokenLength - $outputPos );
103 $inputPos = $outputPos = $tokenOffset +
$tokenLength;
105 throw new MWException( 'Invalid delimiter given to ' . __METHOD__
);
108 if ( $outputPos < strlen( $subject ) ) {
109 $output .= substr( $subject, $outputPos );
115 * Perform an operation equivalent to
117 * preg_replace( "!$startDelim(.*)$endDelim!$flags", $replace, $subject )
119 * @param string $startDelim Start delimiter regular expression
120 * @param string $endDelim End delimiter regular expression
121 * @param string $replace Replacement string. May contain $1, which will be
122 * replaced by the text between the delimiters
123 * @param string $subject String to search
124 * @return string The string with the matches replaced
126 static function delimiterReplace( $startDelim, $endDelim, $replace, $subject, $flags = '' ) {
127 $replacer = new RegexlikeReplacer( $replace );
128 return self
::delimiterReplaceCallback( $startDelim, $endDelim,
129 $replacer->cb(), $subject, $flags );
133 * More or less "markup-safe" explode()
134 * Ignores any instances of the separator inside <...>
135 * @param string $separator
136 * @param string $text
139 static function explodeMarkup( $separator, $text ) {
140 $placeholder = "\x00";
142 // Remove placeholder instances
143 $text = str_replace( $placeholder, '', $text );
145 // Replace instances of the separator inside HTML-like tags with the placeholder
146 $replacer = new DoubleReplacer( $separator, $placeholder );
147 $cleaned = StringUtils
::delimiterReplaceCallback( '<', '>', $replacer->cb(), $text );
149 // Explode, then put the replaced separators back in
150 $items = explode( $separator, $cleaned );
151 foreach( $items as $i => $str ) {
152 $items[$i] = str_replace( $placeholder, $separator, $str );
159 * Escape a string to make it suitable for inclusion in a preg_replace()
160 * replacement parameter.
162 * @param string $string
165 static function escapeRegexReplacement( $string ) {
166 $string = str_replace( '\\', '\\\\', $string );
167 $string = str_replace( '$', '\\$', $string );
173 * Base class for "replacers", objects used in preg_replace_callback() and
174 * StringUtils::delimiterReplaceCallback()
178 return array( &$this, 'replace' );
183 * Class to replace regex matches with a string similar to that used in preg_replace()
185 class RegexlikeReplacer
extends Replacer
{
187 function __construct( $r ) {
191 function replace( $matches ) {
193 foreach ( $matches as $i => $match ) {
194 $pairs["\$$i"] = $match;
196 return strtr( $this->r
, $pairs );
202 * Class to perform secondary replacement within each replacement string
204 class DoubleReplacer
extends Replacer
{
205 function __construct( $from, $to, $index = 0 ) {
208 $this->index
= $index;
211 function replace( $matches ) {
212 return str_replace( $this->from
, $this->to
, $matches[$this->index
] );
217 * Class to perform replacement based on a simple hashtable lookup
219 class HashtableReplacer
extends Replacer
{
222 function __construct( $table, $index = 0 ) {
223 $this->table
= $table;
224 $this->index
= $index;
227 function replace( $matches ) {
228 return $this->table
[$matches[$this->index
]];
233 * Replacement array for FSS with fallback to strtr()
234 * Supports lazy initialisation of FSS resource
236 class ReplacementArray
{
237 /*mostly private*/ var $data = false;
238 /*mostly private*/ var $fss = false;
241 * Create an object with the specified replacement array
242 * The array should have the same form as the replacement array for strtr()
244 function __construct( $data = array() ) {
249 return array( 'data' );
252 function __wakeup() {
257 * Set the whole replacement array at once
259 function setArray( $data ) {
264 function getArray() {
269 * Set an element of the replacement array
271 function setPair( $from, $to ) {
272 $this->data
[$from] = $to;
276 function mergeArray( $data ) {
277 $this->data
= array_merge( $this->data
, $data );
281 function merge( $other ) {
282 $this->data
= array_merge( $this->data
, $other->data
);
286 function replace( $subject ) {
287 if ( function_exists( 'fss_prep_replace' ) ) {
288 wfProfileIn( __METHOD__
.'-fss' );
289 if ( $this->fss
=== false ) {
290 $this->fss
= fss_prep_replace( $this->data
);
292 $result = fss_exec_replace( $this->fss
, $subject );
293 wfProfileOut( __METHOD__
.'-fss' );
295 wfProfileIn( __METHOD__
.'-strtr' );
296 $result = strtr( $subject, $this->data
);
297 wfProfileOut( __METHOD__
.'-strtr' );