asp 常用函数用法(3)


   SYNTAX: FormatNumber(Expression [, Digit [, LeadingDigit [, Paren [, GroupDigit>>>>) 
   ARGUMENTS: Digit 指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是计算机的区域设置。; LeadingDigit 

i指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是计算机的区域设置。; Paren 指示小数点右侧显示位数的数值。

默认值为 -1,指示使用的是计算机的区域设置。; GroupDigit i指示小数点右侧显示位数的数值。默认值为 -1,指示使用的是

计算机的区域设置。. 
   EXAMPLE: <%=FormatNumber(45.324567, 3)%> 
   RESULT: 45.325 

FormatPercent() 
   FUNCTION: 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 (%) 
   SYNTAX: FormatPercent(Expression [, Digit [, LeadingDigit [, Paren [, GroupDigit>>>>) 
   ARGUMENTS: 同上. 
   EXAMPLE: <%=FormatPercent(0.45267, 3)%> 
   RESULT: 45.267% 

Hour() 
   FUNCTION: 以24时返回小时数. 
   SYNTAX: Hour(time) 
   ARGUMENTS: 
   EXAMPLE: <%=Hour(#4:45:34 PM#)%> 
   RESULT: 16 
   (Hour has been converted to 24-hour system) 

Instr() 
   FUNCTION: 返回字符或字符串在另一个字符串中第一次出现的位置. 
   SYNTAX: Instr([start, > strToBeSearched, strSearchFor [, compare>) 
   ARGUMENTS: Start为搜索的起始值,strToBeSearched接受搜索的字符串 strSearchFor要搜索的字符compare 比较方式

(详细见ASP常数) 
   EXAMPLE: <% 
   strText = "This is a test!!" 
   pos = Instr(strText, "a") 
   response.write pos 
   %> 
   RESULT: 9 

InstrRev() 
   FUNCTION: 同上,只是从字符串的最后一个搜索起 
   SYNTAX: InstrRev([start, > strToBeSearched, strSearchFor [, compare>) 
   ARGUMENTS: 同上. 
   EXAMPLE: <% 
   strText = "This is a test!!" 
   pos = InstrRev(strText, "s") 
   response.write pos 
   %> 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/3684.html