0

我有一个包含 HTML 数据的字符串变量。现在我想将该 html 字符串拆分为多个字符串,然后最后将这些字符串合并为一个。

这是html字符串:

<p><span style="text-decoration: underline; color: #ff0000;"><strong>para1</strong></span></p>
<p style="text-align: center;"><strong><span style="color: #008000;">para2</span> स्द्स्द्सद्स्द para2 again<br /></strong></p>
<p style="text-align: left;"><strong><span style="color: #0000ff;">para3</span><br /></strong></p>

这是我的预期输出:

<p><span style="text-decoration: underline; color: #ff0000;"><strong>para1</strong></span><strong><span style="color: #008000;">para2</span>para2 again<br /></strong><strong><span style="color: #0000ff;">para3</span><br /></strong></p>

我的拆分逻辑如下...

  1. </p>根据标签将 HTML 字符串拆分为令牌。
  2. 并获取第一个令牌并将其存储在单独的字符串变量(firstPara)中。
  3. 现在获取每个标记,然后删除以 . 开头<p和结尾的任何标签</p>。并将每个值存储在单独的变量中。

4.然后取名为 firstPara 的第一个令牌并替换标签</p>,然后附加我们通过步骤 3获得的每个令牌。

5.所以,现在变量 firstPara 具有整个值...

  1. 最后,我们只是</p>在 firstPara 的末尾追加...

这是我的问题...

你能帮我摆脱这个问题吗...

4

2 回答 2

1

这是正则表达式示例如何执行此操作。

String pattern = @"(?<=<p.*>).*(?=</p>)";
var matches = Regex.Matches(text, pattern);
StringBuilder result = new StringBuilder();
result.Append("<p>");
foreach (Match match in matches)
{
    result.Append(match.Value);
}
result.Append("</p>");

这就是你应该如何使用Html Agility Pack

HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(text);
var nodes = doc.DocumentNode.SelectNodes("//p");
StringBuilder result = new StringBuilder();
result.Append("<p>");
foreach (HtmlNode node in nodes)
{
    result.Append(node.InnerHtml);
}
result.Append("</p>");
于 2012-12-14T09:21:11.400 回答
1

如果您想将 a 拆分为string另一个string,您可以使用string.Split(string[] separator, StringSplitOptions options)whereseparator是一个string包含至少一个字符串的数组,该字符串将用于拆分string

例子

//Initialize a string of name HTML as our HTML code
string HTML = "<p><span style=\"text-decoration: underline; color: #ff0000;\"><strong>para1</strong></span></p> <p style=\"text-align: center;\"><strong><span style=\"color: #008000;\">para2</span> स्द्स्द्सद्स्द para2 again<br /></strong></p> <p style=\"text-align: left;\"><strong><span style=\"color: #0000ff;\">para3</span><br /></strong></p>";
//Initialize a string array of name strSplit to split HTML with </p>
string[] strSplit = HTML.Split(new string[] { "</p>" }, StringSplitOptions.None);
//Initialize a string of name expectedOutput
string expectedOutput = "";
string stringToAppend = "";
//Initialize i as an int. Continue if i is less than strSplit.Length. Increment i by 1 each time you continue
for (int i = 0; i < strSplit.Length; i++)
{
    if (i >= 1) //Continue if the index is greater or equal to 1; from the second item to the last item
    {
        stringToAppend = strSplit[i].Replace("<p", "<"); //Replace <p by <
    }
    else //Otherwise
    {
        stringToAppend = strSplit[i]; //Don't change anything in the string
    }
    //Append strSplit[i] to expectedOutput
    expectedOutput += stringToAppend;
}
//Append </p> at the end of the string
expectedOutput += "</p>";
//Write the output to the Console
Console.WriteLine(expectedOutput);
Console.Read();

输出

<p><span style="text-decoration: underline; color: #ff0000;"><strong>para1</stro
ng></span> < style="text-align: center;"><strong><span style="color: #008000;">p
ara2</span> ?????????????? para2 again<br /></strong> < style="text-align: left;
"><strong><span style="color: #0000ff;">para3</span><br /></strong></p>

注意:因为我的程序不支持 Unicode 字符,所以它无法读取स्द्स्द्सद्स्द。因此,它被翻译为??????????????

谢谢,
我希望你觉得这有帮助:)

于 2012-12-14T09:24:26.217 回答