如果
/dt/@id
返回comment_34232
或comment_12
如何让它返回34232
或12
(换句话说,将'comment_'
替换为''
如果
/span/style
返回width: 80%;
如何替换width:
,然后%;
检索80
此致
答案 0 :(得分:4)
<强>予。部分
如果
/dt/@id returns `comment_34232` or `comment_12` how can I make it return
34232
或12
(换句话说 将'comment_'
替换为''
使用强>:
substring-after(/dt/@id, '_')
<强> II。部分强>
如果
/span/style returns `width: 80%;` how can I replace `width: ` and after
%;
要检索80
使用强>:
substring-before(substring-after(/span/style, ' '), '%')
请注意:使用标准XPath函数substring-before()
和substring-after()
。