Create TOC

2009년 12월 1일

Python/자동 링크 생성

input에서 http 또는 https 링크를 찾아서 a tag를 붙여주는 python script

import re

re_href= re.compile('(\b(http|https)://([-A-Za-z0-9+&@#/%?=~_()|!:,.;]*[-A-Za-z0-9+&@#/%=~_()|]))')
output = re_href.sub(r'<a href="\1" target="_self">\1</a>', input)