正则表达式选择全部C#

正则表达式选择全部C#,c#,regex,C#,Regex,我有: <div class="content-text view-item-long-description-content"> Yellow Taxi Magnetic Base Roof Top Cab LED Logga ljus med cigarett&#228;ndare 12V<br /> <br /> Helt ny!!!<br /> Material: H&#246;g kvalitet P

我有:

<div class="content-text view-item-long-description-content">
        Yellow Taxi Magnetic Base Roof Top Cab LED Logga ljus med cigarett&#228;ndare 12V<br />
 <br />
 Helt ny!!!<br />
 Material: H&#246;g kvalitet PVC<br />
 Magnetisk bas (Easy f&#228;sta p&#229; taket)<br />
 F&#228;rg: Gul (Vitt &#228;r ocks&#229; tillg&#228;ngliga.)<br />
 LED-ljus F&#228;rg: Gul<br />
 Antal: 1 st<br />

</div>
我怎样才能选择一切

那么:

Match match = Regex.Match(input, "view-item-long-description-content\">(?'content'.*)<\\/div>");
if (match.Success)
{
   string content = match.Groups["content"].Value;
   // content is the whole block inside those two strings
}
else 
{
   // There was no match
}
Match Match=Regex.Match(输入,“查看项目长描述内容\”>(?“内容”。*);
如果(匹配成功)
{
字符串内容=匹配。组[“内容”]。值;
//内容是这两个字符串中的整个块
}
其他的
{
//没有对手
}
Match match = Regex.Match(input, "view-item-long-description-content\">(?'content'.*)<\\/div>");
if (match.Success)
{
   string content = match.Groups["content"].Value;
   // content is the whole block inside those two strings
}
else 
{
   // There was no match
}