IsRegexMatch Method
See Also 
SourceCode.Security.UserRoleManager.Management.UserRoleCriteria Namespace > Utility Class : IsRegexMatch Method



inputString
matchPattern

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Shared Function IsRegexMatch( _
   ByVal inputString As String, _
   ByVal matchPattern As String _
) As Boolean
Visual Basic (Usage) Copy Code
Dim inputString As String
Dim matchPattern As String
Dim value As Boolean
 
value = Utility.IsRegexMatch(inputString, matchPattern)
C#  
public static bool IsRegexMatch( 
   string inputString,
   string matchPattern
)
C++/CLI  
public:
static bool IsRegexMatch( 
   String^ inputString,
   String^ matchPattern
) 

Parameters

inputString
matchPattern

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also