если
/dt/@id
возвращает comment_34232 или comment_12 как мне заставить его вернуть 34232 или 12 (другими словами, заменив 'comment_' на ''
comment_34232
comment_12
34232
12
'comment_'
''
и если
/span/style
возвращает width: 80%; как я могу заменить width: и после этого %; получить 80
width: 80%;
width:
%;
80
Привет
I. Часть
если /dt/@id returns `comment_34232` or `comment_12` how can I make it return 34232 или 12 (другими словами замена 'comment_' на ''
/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
/span/style returns `width: 80%;` how can I replace `width: ` and after
что %; для извлечения 80
substring-before(substring-after(/span/style, ' '), '%')
Примечание : использование стандартных функций XPath substring-before() и substring-after() .
substring-before()
substring-after()