2个回答
展开全部
使用ASP中的Left 函数
定义:
Left 函数可从字符串的左侧返回指定数目的字符。
语法:
Left(string,length)
参数string:必需的。从其中返回字符的字符串。
参数length:必需的。规定需返回多少字符。如果设置为 0,则返回空字符串("")。如果设置为大于或等于字符串的长度,则返回整个字符串。
例子 1
dim txt
txt="This is a beautiful day!"
response.write Left(txt,11)
输出:
This is a b
例子 2
dim txt
txt="This is a beautiful day!"
response.write Left(txt,100)
输出:
This is a beautiful day!
例子 3
dim txt,x
txt="This is a beautiful day!"
x=Len(txt)
response.write Left(txt,x)
输出:
This is a beautiful day!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询