import re
f=open("test.txt")
lines=f.read()
h=[]
h.append(len(re.findall('<li>', lines)))
print ("number of <li> : "+str(h[0]))
test.txt 파일을 읽어 해당 텍스트 파일 안에 해당 스트링의 개수를 찾아 구하는 파이썬 코드. notepad++에서 불러들여 ctrl+f(찾기)에 들어가 일치하는 개수 버튼을 눌러 개수를 세는 방법도 있다.
반응형