Contains some shared attributes and methods -- and some abstract methods with engine-specific implementations that sub-classes must override.
author | Hans Lellelid |
---|---|
package | phing.util.regexp |
version | $Id$ |
getIgnoreCase() : boolean
boolean
match(string $pattern, string $source, array $matches) : boolean
string
The regex pattern to match.
string
The source string.
array
The array in which to store matches.
boolean
Success of matching operation.matchAll(string $pattern, string $source, array $matches) : boolean
string
The regex pattern to match.
string
The source string.
array
The array in which to store matches.
boolean
Success of matching operation.replace(string $pattern, string $replace, string $source) : string
string
The regex pattern to match.
string
The string with which to replace matches.
string
The source string.
string
The replaced source string.setIgnoreCase(boolean $bit) : void
boolean