按键精灵吧 关注:499,554贴子:1,009,267
  • 3回复贴,共1

【安卓按键】对接石墨文档的教程

只看楼主收藏回复

dim html= url.get("https://shimo.im/docs/SSChv3Irm5Iu5FwY/read")
Import "shanhai.lua"
Dim title=shanhai.RegexFind(html,"<title>(.*)</title>")
TracePrint "文章标题:"&title(0)
Dim arr=shanhai.RegexFind(html,"<p line="".-"">(.-)</p>")
For i = 0 To UBOUND(arr)
TracePrint "第"&i+1&"段文字:"&arr(i)
Next
Dim alltext
For Each k In arr
alltext=alltext&k
Next
TracePrint "全部文字:"&alltext


IP属地:天津1楼2020-05-11 11:17回复
    读取html页面源码,然后通过正则匹配提取里面需要的内容。


    IP属地:天津2楼2020-05-11 11:18
    回复
      为什么我输出的信息跟你的不一样呢 望大神解答
      当前第10行:<html>
      <head><title>403 Forbidden</title></head>
      <body>
      <center><h1>403 Forbidden</h1></center>
      <hr><center>openresty/1.15.8.2</center>
      </body>
      </html>


      IP属地:天津6楼2021-03-18 23:09
      收起回复