일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- array
- instr
- ERD
- inner join
- WML
- sql업데이트
- 이미지가로길이
- 정규식
- sql랭킹
- SPLIT
- jdbc driver
- wap
- 한글입력체크
- javascript 한글입력체크
- 이미지세로길이
- FileSystemObject
- VARIABLE
- asp함수
- update
- join
- sql순위
- 인젝션
- 자바기초
- XML
- injection
- MSSQL보안
- JavaScript
- tempDB
- xmldom
- VarType
- Today
- Total
3초기억력
ASP - html 중 img 태그 내부 속성값만 가져오기 본문
제목 : html 중 img 태그 내부 속성값만 가져오기
<%
Set regEx = New RegExp ' 정규식을 작성합니다.
regEx.IgnoreCase = True ' 대/소문자 구분 안함을 설정합니다.
regEx.Global = True ' 전역을 설정합니다.
html = "aldskfja;dsfjka;dsfjka;fkjakldfjasdf<br>aljdsfhalfhalfjhalf<br><span>asdfasdfadsf</span><img src=""http://i2.media.daumcdn.net/photo-media/201104/15/ned/20110415101809573.jpg"" width=""500"" height=""646"" id=""1"">ㅁㄴ러미ㅏㅇ러마ㅣㄴㄹㅇ러<span>aksjdhfalkdfhlk</span><br><img src=""http://i2.media.daumcdn.net/photo-media/201104/15/ned/20110415101809573.jpg"" width=""500"" height=""646"" id=""2"">"
''' 1. 이미지 태그만 가져오기
regEx.Pattern = "<img [^<>]*>" ' 패턴을 설정합니다.
Set Matches = regEx.Execute(html) ' 찾기를 실행합니다.
RetStr = ""
RetImgPath = ""
RetWidth = ""
RetHeight = ""
RetId = ""
For Each Match in Matches ' Matches 컬렉션을 반복합니다.
RetStr = RetStr & "<br>" & Replace(Match.Value, "<", "<") & vbcrlf
file1 = mid(Match.Value, instrRev(Match.Value, "src=""") + 5)
filename = left(file1, instr(file1, """")-1)
file2 = mid(Match.Value, instrRev(Match.Value, "width=""") + 7)
strWidth = left(file2, instr(file2, """")-1)
file3 = mid(Match.Value, instrRev(Match.Value, "height=""") + 8)
strHeight = left(file3, instr(file3, """")-1)
file4 = mid(Match.Value, instrRev(Match.Value, "id=""") + 4)
strId = left(file4, instr(file4, """")-1)
RetImgPath = RetImgPath & filename & "<br>"
RetWidth = RetWidth & strWidth & "<br>"
RetHeight = RetHeight & strHeight & "<br>"
RetId = RetId & strId & "<br>"
Next
Response.Write "1. 이미지 태그만 가져오기<br>" & RetStr & "<br><br><br>"
Response.Write "2. 이미지 경로만 가져오기<br>" & RetImgPath & "<br><br><br>"
Response.Write "3. 이미지 가로길이만 가져오기<br>" & RetWidth & "<br><br><br>"
Response.Write "4. 이미지 세로길이만 가져오기<br>" & RetHeight & "<br><br><br>"
Response.Write "5. 이미지 ID값만 가져오기<br>" & RetId & "<br><br><br>"
%>
내용 : html 내용 중 <img> 태그의 속성값만 가져오기
소스보면 알것지만, instrRev 사용해서 알고자하는 속성값을 써주고, 글자 수만큼 + 해주면 끝
좀 멋지게 function 으로 만들어 보았다. 풉~
<%
Set regEx = New RegExp ' 정규식을 작성합니다.
regEx.IgnoreCase = True ' 대/소문자 구분 안함을 설정합니다.
regEx.Global = True ' 전역을 설정합니다.
html = "aldskfja;dsfjka;dsfjka;fkjakldfjasdf<br>aljdsfhalfhalfjhalf<br><span>asdfasdfadsf</span><img src=""http://i2.media.daumcdn.net/photo-media/201104/15/ned/20110415101809573.jpg"" width=""500"" height=""646"" id=""1"">ㅁㄴ러미ㅏㅇ러마ㅣㄴㄹㅇ러<span>aksjdhfalkdfhlk</span><br><img src=""http://i2.media.daumcdn.net/photo-media/201104/15/ned/20110415101809573.jpg"" width=""500"" height=""646"" id=""2"">"
''' 1. 이미지 태그만 가져오기
regEx.Pattern = "<img [^<>]*>" ' 패턴을 설정합니다.
Set Matches = regEx.Execute(html) ' 찾기를 실행합니다.
RetStr = ""
RetImgPath = ""
RetWidth = ""
RetHeight = ""
RetId = ""
For Each Match in Matches ' Matches 컬렉션을 반복합니다.
RetStr = RetStr & "<br>" & Replace(Match.Value, "<", "<") & vbcrlf
RetImgPath = RetImgPath & GetImgSrc(Match.Value, "src=""") & "<br>"
RetWidth = RetWidth & GetImgSrc(Match.Value, "width=""") & "<br>"
RetHeight = RetHeight & GetImgSrc(Match.Value, "height=""") & "<br>"
RetId = RetId & GetImgSrc(Match.Value, "id=""") & "<br>"
Next
Response.Write "1. 이미지 태그만 가져오기<br>" & RetStr & "<br><br><br>"
Response.Write "2. 이미지 경로만 가져오기<br>" & RetImgPath & "<br><br><br>"
Response.Write "3. 이미지 가로길이만 가져오기<br>" & RetWidth & "<br><br><br>"
Response.Write "4. 이미지 세로길이만 가져오기<br>" & RetHeight & "<br><br><br>"
Response.Write "5. 이미지 ID값만 가져오기<br>" & RetId & "<br><br><br>"
Function GetImgSrc(strImgTag, strAttr)
'strImgTag = <img src="asdfasdfaf.jpg" width="123" height="333" id="adsfasdf" />
'strAttr = src=", width="
Dim imgsrc, filepath
imgsrc = mid(strImgTag, instrRev(strImgTag, strAttr) + Len(strAttr))
filepath = left(imgsrc, instr(imgsrc, """")-1)
GetImgSrc = filepath
End Function
%>
결과
1. 이미지 태그만 가져오기
<img src="http://i2.media.daumcdn.net/photo-media/201104/15/ned/20110415101809573.jpg" width="500" height="646" id="1">
<img src="http://i2.media.daumcdn.net/photo-media/201104/15/ned/20110415101809573.jpg" width="500" height="646" id="2">
2. 이미지 경로만 가져오기
http://i2.media.daumcdn.net/photo-media/201104/15/ned/20110415101809573.jpg
http://i2.media.daumcdn.net/photo-media/201104/15/ned/20110415101809573.jpg
3. 이미지 가로길이만 가져오기
500
500
4. 이미지 세로길이만 가져오기
646
646
5. 이미지 ID값만 가져오기
1
2
'플밍_ASP' 카테고리의 다른 글
ASP - CDO 메일 보내기 샘플 (0) | 2011.04.19 |
---|---|
ASP - VBScript VarType Function (0) | 2011.04.15 |
ASP - 정규식을 이용한 html 중 img 태그만 추출 (0) | 2011.04.15 |
ASP - 오라클 BLOB type 에 외부 URL 이미지의 Binary 를 insert 하고, view 하는 소스 (0) | 2011.04.15 |
ASP - ASP, Upload컴포넌트 활용. 오라클 insert, select 하는 법 (0) | 2011.04.15 |