<完整的VBScript參考
字符串函數返回包含規定長度的重複字符的字符串。
句法
String(number,character)
參數 | 描述 |
---|---|
number | 需要。 返回的字符串的長度 |
character | 需要。 將被重複的字符 |
實施例1
response.write(String(10,"#"))
Output:
##########
實施例2
response.write(String(4,"*"))
Output:
****
實施例3
response.write(String(4,42))
Output:
****
實施例4
response.write(String(4,"XYZ"))
Output:
XXXX
<完整的VBScript參考