본문으로 바로가기

asp split 함수

category 웹.php.asp 17년 전


str = "will-be-happy"
wilb = split(str, "-")

for i = 0 to ubound(wilb)
     response.write wilb(i) & "<br>"
next


결과
will
be
happy