Constructs a regular expression specification out of a string and a group name.

Declaration Syntax

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

Parameters

expression
The string representation of an expression. 
groupName
The name of the System.Text.RegularExpressions.Group used to extract the links from the regular expression. 

Remarks

The expression is constructed with the options defined by PredefinedOptions.

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