• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

ASP 系列函数大全(3)

发布: 2007-6-30 18:56 | 作者: admin | 来源: | 查看: 22次 | 进入软件测试论坛讨论

领测软件测试网     
  
  返回结果: False 
   
   
  IsNumeric() 
   
  函数判断一对象是否为数字,返回布尔值. 
   
  表达式 IsNumeric(expression) 
   
  实例: <% 
   
  i = "345" 
   
  response.write IsNumeric(i) 
   
  %> 
   
  返回结果: True 
   
  就算数字加了引号,ASP还是认为它是数字。 
   
   
  IsObject() 
   
  函数判断一对象是否为对象,返回布尔值. 
   
  表达式 IsObject(expression) 
   
  实例: <% 
   
  Set con = Server.CreateObject("ADODB.Connection") 
   
  response.write IsObject(con) 
   
  %> 
   
  返回结果: True 
   
   
  LBound() 
   
  函数返回指定数组维的最小可用下标. 
   
  表达式 Lbound(arrayname [, dimension]) 
   
  实例: <% 
   
  i = Array("Monday","Tuesday","Wednesday") 
   
  response.write LBound(i) 
   
  %> 
   
  返回结果: 0 
   
   
  LCase() 
   
  函数 返回字符串的小写形式 
   
  表达式 Lcase(string) 
   
  实例: <% 
   
  strTest = "This is a test!" 
   
  response.write LCase(strTest) 
   
  %> 
   
  返回结果: this is a test! 
   
   
  Left() 
   
  函数返回字符串左边第length个字符以前的字符(含第length个字符). 
   
  表达式 Left(string, length) 
   
  实例: <% 
   
  strTest = "This is a test!" 
   
  response.write Left(strTest, 3) 
   
  %> 
   
  返回结果: Thi 
   
   
  Len() 
   
  函数返回字符串的长度. 
   
  表达式 Len(string | varName) 
   
  实例: <% 
   
  strTest = "This is a test!" 
   
  response.write Len(strTest) 
   
  %> 
   
  返回结果: 15 
   
   
  LTrim() 
   
  函数去掉字符串左边的空格. 
   
  表达式 LTrim(string) 
   
  实例: <% 
   
  strTest = " This is a test!" 
   
  response.write LTrim(strTest) 
   
  %> 
   
  返回结果: This is a test! 
   
   
  Mid() 
   
  函数返回特定长度的字符串(从start开始,长度为length). 
   
  表达式 Mid(string, start [, length]) 
   
  实例: <% 
   
  strTest = "This is a test! Today is Monday." 
   
  response.write Mid(strTest, 17, 5) 
   
  %> 
   
  返回结果: Today 
   
   
  Minute() 
   
  函数返回时间的分钟. 
   
  表达式 Minute(time) 
   
  实例: <%=Minute(#12:45:32 PM#)%> 
   
  返回结果: 45 
   
   
  Month() 
   
  函数返回日期. 
   
  表达式 Month(date) 
   
  实例: <%=Month(#08/04/99#)%> 
   
  返回结果: 8 
   
   
  MonthName() 
   
  函数返回指定月份 
   
  表达式 MonthName(month, [, Abb]) 
   
  实例: <%=MonthName(Month(#08/04/99#))%> 
   
  返回结果: August 
   
   
  Now() 
   
  函数返回系统时间 
   
  表达式 Now() 
   
  实例: <%=Now%> 
   
  返回结果: 9/9/00 9:30:16 AM 
   
   
  Right() 
   
  函数返回字符串右边第length个字符以前的字符(含第length个字符). 
   
  表达式 Right(string, length) 
   
  实例: <% 
   
  strTest = "This is an test!" 
   
  response.write Right(strTest, 3) 
   
  %> 
   
  返回结果: st! 
   
   
  Rnd() 
   
  函数产生一个随机数. 
   
  表达式 Rnd [ (number) ] 
   
  实例: <% 
   
  Randomize()
  
  

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网