Asserts the regular expression regex makes a full match on s.

Namespace: MbUnit.Framework
Assembly:  MbUnit.Framework (in MbUnit.Framework.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void FullMatch(
	string s,
	Regex regex
)
Public Shared Sub FullMatch ( _
	s As String, _
	regex As Regex _
)
public:
static void FullMatch(
	String^ s, 
	Regex^ regex
)

Parameters

s
String
String to test.
regex
Regex
Regular expression

See Also