Constructs a regular expression specification out of a System.Text.RegularExpressions.Regex and a group name.

Declaration Syntax

Public Sub New( _
	ByVal expression As Regex, _
	ByVal groupName As String _
)
public RegexSpecification(
	Regex expression,
	string groupName
);
public: RegexSpecification(
	Regex expression,
	String groupName
);
public function RegexSpecification(
	expression : Regex,
	groupName : String
);

Parameters

expression
The System.Text.RegularExpressions.Regex to use. 
groupName
The name of the System.Text.RegularExpressions.Group used to extract the links from the regular expression. 

Requirements

Namespace: Eas.WebCrawler.PlugIns.LinkExtractors
Assembly: Eas.WebCrawler.PlugIns (eas.webcrawler.plugins.dll)

See Also

RegexSpecification Class | RegexSpecification Members | Eas.WebCrawler.PlugIns.LinkExtractors Namespace