This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.FileHelpers.
Summary
Finds files with regular expression pattern in files matching the given globber pattern.
Syntax
public static FilePath[] FindRegexInFiles(this ICakeContext context, string globberPattern, string rxFindPattern, RegexOptions rxOptions)
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
globberPattern |
string |
The globber pattern to match files to replace text in. |
rxFindPattern |
string |
The regular expression to find. |
rxOptions |
RegexOptions |
The regular expression options to use. |
Return Value
Type |
Description |
FilePath[] |
The files which match the regular expression and globber pattern. |