文件名称:go-requery:使用 Regexp 的强大功能查询文本
文件大小:10KB
文件格式:ZIP
更新时间:2024-07-19 10:53:20
Go
重新查询 使用正则表达式的强大功能查询文本。 用法 package main import ( "github.com/ddliu/go-requery" ) func main () { // create doc doc := requery . NewDoc ( `<html>...</html>` ) // get the title tag doc . Find ( `<title>.*</title>` ). String () // get page title doc . Find ( `<title>(.*)</title>` . Sub ( 1 ). String () // named match doc . Find ( `<title>(?P<title>.*)</title>` . Su
【文件预览】:
go-requery-master
----.travis.yml(25B)
----context.go(4KB)
----test()
--------test.html(22KB)
----LICENSE(1KB)
----requery.go(473B)
----requery_test.go(806B)
----collection.go(2KB)
----README.md(918B)
----util.go(549B)