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