Split
 
str="a$b$c"
 
aa=split(str,"$")
 
for i=0 to ubound(aa)
 
 response.write(aa(i))       '数组从0开始
 
next
 
 
呵呵,见笑。