<tag1 attribute="0">
で始まり、で終わる文字列に一致する正規表現は何</tag>
ですか?
質問する
122 次
1 に答える
0
正規表現:<tag1 attribute=”0“>.*?<\/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 に答える