如何:使用正则表达式提取数据字段 (C++/CLI)
下面的代码示例演示如何使用正则表达式从格式化字符串中提取数据。 下面的代码示例使用 Regex 类指定与电子邮件地址对应的模式。 此模式包括可用于检索每个电子邮件地址的用户和主机名部分的字段标识符。 Match 类用于执行实际的模式匹配。 如果给定的电子邮件地址有效,则将提取并显示用户名和主机名。
示例
// Regex_extract.cpp
// compile with: /clr
#using <System.dll>
using namespace System;
using namespace System::Text::RegularExpressions;
int main()
{
array<String^>^ address=
{
"jay@southridgevideo.com",
"barry@adatum.com",
"treyresearch.net",
"karen@proseware.com"
};
Regex^ emailregex = gcnew Regex("(?<user>[^@]+)@(?<host>.+)");
for (int i=0; i<address->Length; i++)
{
Match^ m = emailregex->Match( address[i] );
Console::Write("\n{0,25}", address[i]);
if ( m->Success )
{
Console::Write(" User='{0}'",
m->Groups["user"]->Value);
Console::Write(" Host='{0}'",
m->Groups["host"]->Value);
}
else
Console::Write(" (invalid email address)");
}
Console::WriteLine("");
return 0;
}