我试图在goquery. 我不知道如何在丢弃所有其他内容的同时解析字符串“我需要的字符串”。
<div class="outter-class">
<h1 class="inner-class">
The string I need
<span class="other-class" >Some value I don't need</span>
<span class="other-class2" title="sometitle"></span>
</h1>
<div class="other-class3">
<h3>Some heading i don't need</h3>
</div>
</div>
我尝试使用类似的东西:https : //stackoverflow.com/a/8851526/989919 通过将其调整为这样的 goquery:
test := s.Clone().Children().Empty().End().Text()
fmt.Println(test.Text())
但这不起作用。我从API 中尝试了很多不同的变体,但我无法弄清楚。
慕的地6264312
拉丁的传说
慕勒3428872
相关分类