FileHelperAliases.

FindRegexMatchGroupInFile(ICakeContext, FilePath, string, int, RegexOptions) Method

Summary

Finds the first regex match in a file and returns a specific match group.
Assembly
Cake.FileHelpers.dll
Namespace
Cake.FileHelpers
Containing Type
FileHelperAliases

Syntax

public static Group FindRegexMatchGroupInFile(this ICakeContext context, FilePath file, string rxFindPattern, int groupIndex, RegexOptions rxOptions)

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
file FilePath The file.
rxFindPattern string The regex pattern to search for.
groupIndex int The specific match group.
rxOptions RegexOptions The regex options.

Return Value

Type Description
Group The matches with their groups.