服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - ASP教程 - asp字符串连接符&、多个字符串相加、字符串拼接类

asp字符串连接符&、多个字符串相加、字符串拼接类

2020-03-11 14:10路遥人稀 ASP教程

这篇文章主要介绍了asp字符串连接符&、多个字符串相加、字符串拼接类,需要的朋友可以参考下

asp中使用&实现字符串的连接

简单字符串连接

response.write "www.zzvips.com"&"服务器之家"

多个字符串连接

?
1
2
3
4
5
6
7
8
<%
gettj="<a href=""http://www.zzvips.com/bc/asp/"" vb" id="highlighter_434619">
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<%
Class appendString
    Private arrIndex, arrUbound, arrList()
    
    Private Sub Class_Initialize()
        ‘分配10长度
        redim arrList(10)
        ‘当前长度
        arrIndex = 0
        '每次扩展长度
        arrUbound = 10
    End Sub
    
    Private Sub Class_Terminate()
        '释放所有数组,再次使用时,需要重新分配
        Erase arrList
    End Sub
    
    ‘设置值并动态扩展长度
    Public Default Sub Add(value)
        arrList(arrIndex) = value
        arrIndex = arrIndex + 1
        if arrIndex > arrUbound then
            arrUbound = arrUbound + 50
            redim preserve arrList(arrUbound)
        end if
    End Sub
    
    '返回字符串
    Public Function getString(splitString)
        redim preserve arrList(arrIndex - 1)
        getString = join(arrList,splitString)
    End Function   
 
End Class
 
'调用方法
Set StringClass = New appendString
StringClass.add("我")
StringClass.add("爱")
StringClass.add("编")
StringClass.add("程")
OutputString = StringClass.getString("")        '打印结果是:我爱编程
%>

以上就是asp字符串连接符&、多个字符串相加、字符串拼接类的详细内容,更多关于asp字符串连接符的资料请关注服务器之家其它相关文章!

原文链接:https://blog.csdn.net/qq_19250999/article/details/96475770

延伸 · 阅读

精彩推荐