Click to Rate and Give Feedback
MSDN
MSDN Library
Web Development
Scripting
VBScript
 String Function
Collapse All/Expand All Collapse All
This page is specific to
.NET Framework 3.0

Other versions are also available for the following:
Visual Basic Scripting Edition
String Function

Returns a repeating character string of the length specified.

String(number, character)
number

Length of the returned string. If number contains Null, Null is returned.

character

Character code specifying the character or string expression whose first character is used to build the return string. If character contains Null, Null is returned.

If you specify a number for character greater than 255, String converts the number to a valid character code using the formula:

character Mod 256

The following example uses the String function to return repeating character strings of the length specified:

Dim MyString
MyString = String(5, "*")   ' Returns "*****".
MyString = String(5, 42)   ' Returns "*****".
MyString = String(10, "ABC")   ' Returns "AAAAAAAAAA".

Reference

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker