Извлечение, создание и добавление с использованием xpath и telegram Instant View
<iframe src="https://expmle.com/subdirectory/sample_title" />
Как я могу создать и добавить ниже <a>
тег из приведенного выше кода с помощью XPath
и Telegram функции мгновенного просмотра?
<a href="https://expmle.com/subdirectory/sample_title">sample_title</a>
Я хочу извлечь целую src
и последняя часть этого и использование их для создания <a>
тег.
Любые предложения будут очень признательны:)
2 ответа
Решение
Это должно работать правильно.
<a>: //iframe # Find iframe and convert it to <a>
@set_attr(href, ./@src) # Set href attribute from src
$anchor # Create variable for current <a>
@set_attr(text, ./@href) # We set new attribute for link which will processed by @match function, then @text attribute will be replaced by result of the @match
@match("\\w+_\\w+"): $@/@text # Now we find our future name of the link "sample_name" (this function will replace all in @text by our new name
@prepend(@text): $anchor # And then put this name to his $anchor
# append <a> tag below
@after(<a>, href, ./@src, content, ./@src): //iframe
# take everything after the last slash
@match("[^\/]+$", "1"): $@/@content
# move the attribute inside the tag
@append(@content): $@
Если последний $@
не будет работать, просто определите переменную для <a>
,