如何:将正则表达式用于简单匹配 (C++/CLI)

下面的代码示例使用正则表达式查找完全匹配的子字符串。 该搜索操作由静态 IsMatch 方法(采用两个字符串作为输入)执行。 第一个是要搜索的字符串,第二个是要搜索的模式。

示例

// regex_simple.cpp
// compile with: /clr
#using <System.dll>

using namespace System;
using namespace System::Text::RegularExpressions;

int main()
{
   array<String^>^ sentence = 
   {
      "cow over the moon",
      "Betsy the Cow",
      "cowering in the corner",
      "no match here"
   };
    
   String^ matchStr = "cow";
   for (int i=0; i<sentence->Length; i++)
   {
      Console::Write( "{0,24}", sentence[i] );
      if ( Regex::IsMatch( sentence[i], matchStr,
                     RegexOptions::IgnoreCase ) )
         Console::WriteLine("  (match for '{0}' found)", matchStr);
      else
         Console::WriteLine("");
   }
   return 0;
}

请参见

其他资源

.NET Framework 正则表达式

编程在Visual C++的.NET