Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะเขียนนิพจน์ทั่วไปของ Python เพื่อรับแท็ก anchor ทั้งหมดในหน้าเว็บได้อย่างไร


โค้ดต่อไปนี้แยกแท็กทั้งหมดในสตริงที่กำหนด

ตัวอย่าง

import re
rex = re.compile(r'[\<\>]')
l = "this is text1 <a href='irawati.com' target='_blank'>hi</a> this is text2"
print rex.findall(l)

ผลลัพธ์

['<', '>', '<', '>']