我的 HTML 如下所示
<h4>
<span>Cat</span>
<span>Dog</span>
<a href="xxx" class="telcat">Potatoes</a>
</h4>
我正在尝试从上面生成以下字符串,它只是由逗号连接的子元素内部文本
Cat,Dog,Potatoes
我试过类似的东西
string x = String.Join(",", htmldoc.DocumentNode.SelectNodes("//h4").Elements().Select(el => el.InnerText).ToList());
但是我得到了输出,我得到的字符串看起来像
,Cat,
,Dog,
,Potatoes,