참조 : http://www.ihelpers.co.kr/programming/tipntech.php?CMD=view&IDX=21
참조 : http://playgame.egloos.com/936440
참조 : http://fillgun.tistory.com/68?srchid=BR1http%3A%2F%2Ffillgun.tistory.com%2F68
txt="""" & "앨범1,앨범2,앨범3,앨범4" & """" & "," & "가수1" & "," & """" & "제목1,제목2,제목3,제목4" & """"
Set regchk = New RegExp
regchk.IgnoreCase = True
regchk.global = True
'따옴표(")를 제외한 모든 문자
regchk.Pattern = """" & "[^""""]*" & """"
if regchk.test(txt) then
set quots=regchk.Execute (txt)
end if
for each item in quots
response.write txt & "<br>"
response.write item & "<br>"
txt=replace(txt,item,replace(item,",",","))
response.write txt & "<br>"
response.write "<br>"
next
Set regchk = Nothing
참조 : http://playgame.egloos.com/936440
참조 : http://fillgun.tistory.com/68?srchid=BR1http%3A%2F%2Ffillgun.tistory.com%2F68
txt="""" & "앨범1,앨범2,앨범3,앨범4" & """" & "," & "가수1" & "," & """" & "제목1,제목2,제목3,제목4" & """"
Set regchk = New RegExp
regchk.IgnoreCase = True
regchk.global = True
'따옴표(")를 제외한 모든 문자
regchk.Pattern = """" & "[^""""]*" & """"
if regchk.test(txt) then
set quots=regchk.Execute (txt)
end if
for each item in quots
response.write txt & "<br>"
response.write item & "<br>"
txt=replace(txt,item,replace(item,",",","))
response.write txt & "<br>"
response.write "<br>"
next
Set regchk = Nothing
'쓸만한 주저리' 카테고리의 다른 글
나는~ 몰랐네~ 추천 버튼 쓰는 법~ (0) | 2009.02.19 |
---|---|
좌우 방향 버튼을 누르면 iframe이 움직이면서 다른 내용을 보기 (0) | 2008.12.31 |
자바스크립트를 이용한 그림판(?) (0) | 2008.12.19 |
ie6에서 레이어(layer)와 선택상자(select)가 겹치는 문제 (0) | 2008.12.12 |
asp/mssql을 쓰면서 레코드셋은 되고, 파라미터는 안될 때 (0) | 2008.12.09 |