문제.
HTML파일에 존재하는 테이블의 갯수를 알아야 할 일이 생김.
코드.
Dim htmlFileObj, htmlOpenFile, strReadAll, htmlPageCnt
Set htmlFileObj = CreateObject("Scripting.FileSystemObject")
Set htmlOpenFile = htmlFileObj.OpenTextFile(filePath)
strReadAll = htmlOpenFile.ReadAll
htmlPageCnt = UBOUND(SPLIT(strReadAll, "</table>"))
참조.
반응형
'Programming' 카테고리의 다른 글
[ASP] 오류 'ASP 0131' 허용되지 않는 부모 경로 (0) | 2017.09.06 |
---|---|
[ASP] Session (0) | 2017.08.18 |
요청 개체 오류 'ASP 0104 : 80004005' 허용되지 않는 작업 [출처] 요청 개체 오류 'ASP 0104 : 80004005' 허용되지 않는 작업|작성자 털프가이 (0) | 2017.08.10 |
알수 없는 확장자의 MIME Type (0) | 2017.08.07 |
[HTML] placeholder 글자색상 변경하기. (0) | 2017.07.31 |