Click or drag to resize
HelperIsValidRegexValue Method (Regex, String)
Validates specified value with the specified regular expression.

Namespace: Bio.Util
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public static bool IsValidRegexValue(
	Regex regx,
	string value
)

Parameters

regx
Type: System.Text.RegularExpressionsRegex
Regular expression object.
value
Type: SystemString
Value to validate.

Return Value

Type: Boolean
Returns true if value completely match with the specified regular expression; otherwise false.
See Also