Search w3schools.com:

SHARE THIS PAGE

VBScript String Function


VBScript Reference Complete VBScript Reference

The String function returns a string that contains a repeating character of a specified length.

Syntax

String(number,character)

Parameter Description
number Required. The length of the returned string
character Required. The character that will be repeated

Example 1

document.write(String(10,"#"))

Output:

##########

Example 2

document.write(String(4,"*"))

Output:

****

Example 3

document.write(String(4,42))

Output:

****

Example 4

document.write(String(4,"XYZ"))

Output:

XXXX


VBScript Reference Complete VBScript Reference

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]