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: 132f5b18c5018ababae8649c7285f9a4aaf373df $ |
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