我是靠谱客的博主 愉快海燕,最近开发中收集的这篇文章主要介绍asp字符串连接符&、多个字符串相加、字符串拼接类,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

简单字符串连接

response.write "uoften.com"&"靠谱客"

多个字符串连接

<%
gettj="<a href=""https://www.uoften.com/tools/zhengze.html"" title=""正则表达式30分钟入门教程"" target=""_blank"">正则表达式30分钟入门教程</a>"&vbcrlf
gettj=gettj&"<a href=""https://www.uoften.com/article/181099.htm"" title=""揭开正则表达式的神秘面纱(regexlab出品)"" target=""_blank"">揭开正则表达式的神秘面纱(regexlab出品)</a>"&vbcrlf
gettj=gettj&"<a href=""http://tools.uoften.com/regex/javascript/"" title=""JavaScript正则表达式在线测试工具"" target=""_blank"">JavaScript正则表达式在线测试工具</a>"&vbcrlf
gettj=gettj&"<a href=""https://www.uoften.com/tools/regexsc.htm"" title=""正则表达式速查表"" target=""_blank"">正则表达式速查表</a>"&vbcrlf
gettj=gettj&"<a href=""https://www.uoften.com/tools/regex.htm"" title=""常用正则表达式"" target=""_blank"">常用正则表达式</a>"&vbcrlf
response.write gettj
%>

不如js中直接+=省心

ASP - 字符串拼接类

在ASP中,要拼接字符串的时候,第一个用到的绝对是&,后来在某次项目中,我发现在拼接超长字符串的时候,使用&的效率极低。使用join拼接字符串可使效率提升几百倍。

<%
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字符串连接符的资料请关注靠谱客其它相关文章!

最后

以上就是愉快海燕为你收集整理的asp字符串连接符&、多个字符串相加、字符串拼接类的全部内容,希望文章能够帮你解决asp字符串连接符&、多个字符串相加、字符串拼接类所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(108)

评论列表共有 0 条评论

立即
投稿
返回
顶部