python 如何获取html<area>里面的值?
发布网友
发布时间:2022-05-11 07:41
我来回答
共5个回答
热心网友
时间:2023-10-08 23:44
用正则表达式分割就可以
import re
s = '<area shape="rect" coords="157,804,323,848" href="#" />'
ptn = re.compile(".+\"(\d+),(\d+),(\d+),(\d+)\".+") #正则表达式可以根据要求再细微化
result = ptn.match(s)
A = int(result.group(1))
B = int(result.group(2))
C = int(result.group(3))
D = int(result.group(4))
=============================================================
或者:
import re
s = '<area shape="rect" coords="157,804,323,848" href="#" />'
ptn = re.compile(".+coords=\"([\d,]+)\".+") #正则表达式可以根据要求再细微化
result = ptn.match(s)
arr = result.group(1).split(",")
这时arr列表里面存放的就是分开的四个字符串,转化成整型赋值即可。
热心网友
时间:2023-10-08 23:44
两种方法。第一种用正则:
import re
a = '<area shape="rect" coords="157,804,323,848" href="#" />'
b = re.compile('rect" coords="(.*?)" href="#" ')
c = b.findall(a)[0]
d = c.split(",")
A = d[0]
B = d[1]
C = d[2]
D = d[3]
print A,B,C,D
第二种用切片
a = '<area shape="rect" coords="157,804,323,848" href="#" />'
b = a.find('rect" coords="')
c = a.find('" href="#" ')
d = a[b+len('rect" coords="'):c]
e = d.split(",")
A = e[0]
B = e[1]
C = e[2]
D = e[3]
print A,B,C,D
好了
热心网友
时间:2023-10-08 23:45
两种方法。
第一种用正则:
import re
a = '<area shape="rect" coords="157,804,323,848" href="#" />'
b = re.compile('rect" coords="(.*?)" href="#" ')
c = b.findall(a)[0]
d = c.split(",")
A = d[0]
B = d[1]
C = d[2]
D = d[3]
print A,B,C,D
第二种用切片
a = '<area shape="rect" coords="157,804,323,848" href="#" />'
b = a.find('rect" coords="')
c = a.find('" href="#" ')
d = a[b+len('rect" coords="'):c]
e = d.split(",")
A = e[0]
B = e[1]
C = e[2]
D = e[3]
print A,B,C,D
热心网友
时间:2023-10-08 23:45
不知道你这是什么玩意啊
我给你一个在 jquery下操作html的思路:
//获得属性值
var attrValue = $("area").attr("coords");
//然后切割字符串
array alist = new array();
alist = attrValue.split(",");
alist[0] alist[1] alist[2] alist[3] 就是你所需要的几个值
你在拼接一下就行了
比如:
var str = "A="+alist[0]+" B="+alist[1]]+" C="+alist[2]]+" D="+alist[3]
热心网友
时间:2023-10-08 23:46
通过模板继承关系
$shape = varShap
$coords = varCoords
$href = varHref
------------------------------
A = parent.coords.split(",")[0]
B = parent.coords.split(",")[1]