<% a="abc|ab|efg|hi" b="ab" response.write "b在a中的位置是"&getN(a,b) %> <% function getN(x,y) getN=0 arr=split(x,"|") for i=0 to ubound(arr) if arr(i)=y then getN=i+1 exit function end if next end function %>