|
ListMatchermatch Method (ListString, ListString)
|
match two sets of strings. The first set of strings may contain regular expressions prefixed by "&"
Namespace:
Karamba.Elements
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static bool match(
List<string> set1,
List<string> set2
)
Public Shared Function match (
set1 As List(Of String),
set2 As List(Of String)
) As Boolean
public:
static bool match(
List<String^>^ set1,
List<String^>^ set2
)
static member match :
set1 : List<string> *
set2 : List<string> -> bool
Parameters
- set1
- Type: System.Collections.GenericListString
List of search strings - set2
- Type: System.Collections.GenericListString
List of strings to be searched
Return Value
Type:
Boolean true if one of the strings in set2 matches set1
See Also