2019. 10. 14.

[python] 파이썬 정규표현식 split 활용

크롤링 할때 값에서 결과를 추출할때 정규표현식을 많이 쓴다. 
사용예제는 다음과 같다.

(생략)
a_tag  = bsObj.select["a.onclick"]

for tag in a_tags:
  content = tag.attrs['href']
  if 'http://' in content:
    a = re.split("[']", tag.attrs['href']
    print(a[3])

Popular Posts

Recent Posts

Blog Archive

Powered by Blogger.