首页 > 开发 > 综合 > 正文

VBS 中 Space 函数的应用

2024-07-21 02:15:32
字体:
来源:转载
供稿:网友
很多时候我们需要生成 重复的 n 个字符
一般人都会使用这样的方法
<%
dim i, n, substring
n = 10
for i = 0 to n
substring = substring & "&nbsp;"
next
response.write(substring)
%>

其实是忽略了 vbs 里一个极有用的函数 space
下面我用 space 和 replace 来实现上例功能
<%
dim n, substring
n = 10
substring = space(n)
substring = replace(substring, " ", "&nbsp;")
response.write(substring)
%>

如果你想更简单点的话 可以自己写个函数 比如
<%
function spaceplus(byref repeatstring, byref repeatnumber)
spaceplus = replace(space(repeatnumber), " ", repeatstring)
end function

response.write(spaceplus("&nbsp;", 10))
%>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表