Left 函数可从字符串的左侧返回指定数目的字符。Left(string,length)例如:dim txt,xtxt="This is a test string!"x=Len(txt)response.write(Left(txt,x))