다음 코드는 python regex를 사용하여 html 링크에서 URL을 추출합니다.
예시
import re s = '''https://www.santa.com''' match = re.search(r'href=[\'"]?([^\'" >]+)', s) if match: print match.group(0)인쇄
출력
이것은 출력을 제공합니다.
href="https://www.santa.com"
다음 코드는 python regex를 사용하여 html 링크에서 URL을 추출합니다.
import re s = '''https://www.santa.com''' match = re.search(r'href=[\'"]?([^\'" >]+)', s) if match: print match.group(0)인쇄
이것은 출력을 제공합니다.
href="https://www.santa.com"