0

<tag1 attribute="0">で始まり、で終わる文字列に一致する正規表現は何</tag>ですか?

4

1 に答える 1

0

正規表現:<tag1 attribute=”0“&gt;.*?<\/tag>

テストコード:

using System;
using System.Text.RegularExpressions;

public class Test
{
  public static void Main()
  {
    string input = @"this is <tag1 attribute=""0""> and ends with </tag>, okay?";
    Console.WriteLine(input);
    Match match = Regex.Match(input, @"<tag1 attribute=""0"">.*?<\/tag>",
      RegexOptions.IgnoreCase);
    if (match.Success)
    {
      Console.WriteLine("Match!");
    }
  }
}
于 2012-07-18T22:44:34.457 に答える