新闻中心

EEPW首页>嵌入式系统>设计应用> wincc中使用vbs常用函数

wincc中使用vbs常用函数

作者: 时间:2011-06-23 来源:网络 收藏
28.second()

本文引用地址://m.amcfsurvey.com/article/150569.htm

  功能:返回一个整数值.

  格式:second(time)

  参数:time是一个有效的时间表达式;

  例子lt;% =second(# 12:28:30#) %>

  结果:30

  29.strReverse()

  功能:返回与原字符串排列逆向的字符串.

  格式:strreverse(string)

  参数:string是字符串

  例子% =strreverse(“this is a test!”)

  结果:!tset a si siht

  30.time()

  功能:返回当前系统的时间值.

  格式:time()

  参数:无

  结果:9:58:28 Am

  31.函数trim()

  功能:删去字符串前,后的空格.

  格式:trim(string)

  参数:string 字符串.

  例子:

  %

  strtest=“ this is a test! ”

  response.write trim(strtest)

  %>

  结果:this is a test!

  32.函数UBound()

  功能:返回一个数组的上界.

  格式:Ubound(expression_r [,dimension])

  参数:expression_r 是数组表达式/数组变量,dimension 是任意项

  例子:

  %

  i = array(“1”,”2”,”3”)

  response.write ubound(i)

  %>

  结果: 2

  33.函数:UCase()

  功能:将一字符类型变量的字符全部变换成大写字符.

  格式:Ucase(string)

  参数:string是字符串变量

  例子:

  %

  str=“THIS is Lcase!”

  response.write Lcase(str)

  %>

  结果:THIS IS LCASE!

  34.函数Vartype()

  功能:返回变量的常量代码(整数)

  格式:Vartype(varname)

  参数:varname是任何类型的变量名称.

  例子:

  %

  i=5

  response.write vartype(i)

  %>

  结果:2 (2表示整数,须要参考ASP常量代码.)

  35.函数Weekday()

  功能:返回一个整数,对应一周中的第几天.

  格式:Weekday(date [,firstofweek])

  参数: date为日期变量,firstofweek为任选项.

  例子:

  %

  d= # 5/9/00 #

  response.write weekday(d) %>

  结果:3(3 表示是星期二)

  36.函数weekdayname()

  功能:返回字符串,对应星期几.

  格式:weekdayname(weekday[,abb[,firstdayofweek]])

  参数:weekday为日期变量,abb,firstdayofweek为任选项.

  例子:

  %

  d = #8/4/99#

  response.write weekdayname(d)

  %>

  结果: Wednesday

  37.函数year()

  功能:返回日期表达式所在的年份.

  格式:year(date)

  参数: date是有效的日期表达式

  例子:

  % =year(#8/9/99#) %>

  结果:1999

  38.函数Mod()功能:取余数.

  例子:3 Mod 2

  结果:1


上一页 1 2 3 4 下一页

评论


相关推荐

技术专区

关闭