ASP常用函数收藏乱七八糟未整理版
总览
本攻略旨在整理ASP中经常使用的函数,让读者们可以快速了解和掌握这些函数的使用方法。
以下是本攻略涉及到的函数列表:
Len()
LCase()
UCase()
Left()
Right()
Mid()
Replace()
Trim()
FormatCurrency()
FormatDateTime()
FormatPercent()
IsNumeric()
InStr()
DateAdd()
详细讲解
Len()
Len()
函数返回指定字符串的长度,其中包括的字符数。示例如下:
<%
Dim str
str = "Hello, world!"
Response.Write Len(str) '输出:13
%>
LCase()
和 UCase()
LCase()
函数将指定字符串转换为小写字母形式,UCase()
则转换为大写字母形式。示例如下:
<%
Dim str
str = "Hello, world!"
Response.Write LCase(str) '输出:hello, world!
Response.Write UCase(str) '输出:HELLO, WORLD!
%>
Left()
、Right()
和Mid()
Left()
、Right()
和Mid()
函数可以截取指定字符串中的一部分,并返回截取后的字符串。Left()
返回左侧子串,Right()
返回右侧子串,Mid()
则返回字符串的中间子串。示例如下:
<%
Dim str
str = "Hello, world!"
Response.Write Left(str, 5) '输出:Hello
Response.Write Right(str, 6) '输出:world!
Response.Write Mid(str, 8, 5) '输出:world
%>
Replace()
Replace()
函数可以搜索指定字符串中的某个子串,并将其替换为新的子串。示例如下:
<%
Dim str
str = "Hello, world!"
Response.Write Replace(str, "world", "ASP") '输出:Hello, ASP!
%>
Trim()
Trim()
函数可以去掉指定字符串开头和结尾处的空格。示例如下:
<%
Dim str
str = " Hello, world! "
Response.Write Trim(str) '输出:Hello, world!
%>
FormatCurrency()
、FormatDateTime()
和 FormatPercent()
FormatCurrency()
、FormatDateTime()
和 FormatPercent()
函数用于将指定的数字、日期和百分比格式化为字符串。示例如下:
<%
Dim num, date, percent
num = 123456.78
date = Now()
percent = 0.23
Response.Write FormatCurrency(num) '输出:$123,456.78
Response.Write FormatDateTime(date, 2) '输出:22/11/2021 16:28:42
Response.Write FormatPercent(percent) '输出:23%
%>
IsNumeric()
IsNumeric()
函数用于判断指定的字符串是否为数字类型。示例如下:
<%
Dim str
str = "123"
If IsNumeric(str) Then
Response.Write str & " is numeric."
Else
Response.Write str & " is not numeric."
End If
%>
InStr()
InStr()
函数用于搜索一个子字符串在给定字符串中第一次出现的位置。如果找到了子字符串,函数返回子字符串第一个字符的位置。如果没有找到子字符串,函数返回0。示例如下:
<%
Dim str
str = "Hello, world!"
Response.Write InStr(str, "world") '输出:8
%>
DateAdd()
DateAdd()
函数用于在指定日期上添加或减去指定的时间间隔。示例如下:
<%
Dim date
date = Now()
Response.Write DateAdd("d", 7, date) '输出:2021/11/29 16:39:36
Response.Write DateAdd("h", -3, date) '输出:2021/11/22 13:39:36
%>
总结
常用函数是ASP编程中不可缺少的一部分,本攻略整理的这些函数是ASP编程中比较常用、比较基础的一部分。了解这些函数,可以帮助我们更快、更高效地开发ASP应用程序。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:ASP常用函数收藏乱七八糟未整理版 - Python技术站