VBScript 字符串函数



字符串

字符串函数使用指定字符填充字符串指定的次数。

语法

String(number,character)
  • Number,一个必需的参数。一个整数值,针对字符参数重复指定的次数。

  • Character,一个必需的参数。字符值,在指定次数内需要多少会被重复。

示例

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         document.write("Line 1 :" & String(3,"$") & "<br />")
         document.write("Line 2 :" & String(4,"*") & "<br />")
         document.write("Line 3 :" & String(5,100) & "<br />")
         document.write("Line 4 :" & String(6,"ABCDE") & "<br />")

      </script>
   </body>
</html>

当您将其另存为 .html 并使用 Internet Explorer 执行它时,则上述脚本会生成以下结果 −

Line 1 :$$$
Line 2 :****
Line 3 :ddddd
Line 4 :AAAAAA
vbscript_strings.htm
广告