StringAssert.Matches 方法 (String, Regex)
验证指定的字符串是否与正则表达式匹配。
命名空间: Microsoft.VisualStudio.TestTools.UnitTesting
程序集: Microsoft.VisualStudio.QualityTools.UnitTestFramework(在 Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 中)
语法
声明
Public Shared Sub Matches ( _
value As String, _
pattern As Regex _
)
public static void Matches(
string value,
Regex pattern
)
public:
static void Matches(
String^ value,
Regex^ pattern
)
static member Matches :
value:string *
pattern:Regex -> unit
public static function Matches(
value : String,
pattern : Regex
)
参数
- value
类型:System.String
应与 pattern 匹配的字符串。
- pattern
类型:System.Text.RegularExpressions.Regex
value 应与之匹配的正则表达式。
异常
异常 | 条件 |
---|---|
AssertFailedException | value 与 pattern 不匹配。 |
备注
如果字符串与表达式不匹配,则断言失败。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。