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: 080377e722e061a58ba3039adbdb9380000031f7 $ |
getIgnoreCase() : boolean
boolean
getLimit() : integer
integer
getMultiline() : 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
setLimit(integer $limit)
integer
setMultiline(boolean $bit)
boolean