Все от "Name=" до первого "/"?
# Функция, которая выбирает подтекст между двумя элементами текста def between_markers(text: str, begin: str, end: str) -> str: start = text.find(begin) + len(begin) if begin in text else None stop = text.find(end) if end in text else None return text[start:stop]
(?<=Name=).*?(?=\/)
Обсуждают сегодня