我从 Go 开始,并从 Colly 开始。有人可以帮我从输出中删除空行吗?这是我的代码:
package main
import (
"fmt"
"github.com/gocolly/colly"
)
func main() {
c := colly.NewCollector()
c.OnHTML("table > tbody", func(e *colly.HTMLElement) {
fmt.Println(e.Text)
})
c.Visit("https://www.olx.pl/elektronika/gdynia/")
}
我试过这个:golang regexp remove all blank lines 和这个:Golang idiomatic way to remove a blank line from a multi-line string,可能是错误的方式,或者我错过了其他东西。
ABOUTYOU
qq_笑_17
相关分类