Đoạn mã sau trích xuất tất cả các thẻ trong chuỗi đã cho
Ví dụ
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)
Đầu ra
['<', '>', '<', '>']
Đoạn mã sau trích xuất tất cả các thẻ trong chuỗi đã cho
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)
['<', '>', '<', '>']