Be the first user to complete this post

  • 0
Add to List

VBA-Excel: String Functions – String()

Description:

 The String() function returns a string consisting a repeating characters of specified length.

Format:

String(number,character)

Arguments:
  • number
    • Mandatory
    • Type: Numeric
    • No of times the character to be repeated, means length of the returned string.

  • Character
    • Mandatory
    • Type: Numeric
    • Character to be repeated
Function FnString()

  intNumber = 10

  strChar = "S"

  MsgBox String(intNumber, strChar)

End Function     
String()
String()

Also Read About  Other String() Functions

INSTR()                       |                         InstrREV()                       |                        LCase()

UCase()                      |                         Left()                                |                        Right()

LTrim()                        |                         Mid()                                 |                        Trim()

RTrim()                       |                        Replace()                          |                        Space()

Len()                           |                        StrComp()                         |                        String()



Also Read:

  1. VBA-Excel: String Functions – Mid()
  2. VBA Excel - Cells, Ranges and Offset : Offset
  3. VBA-Excel: String Functions – strComp()
  4. VBA-Excel: Arrays – Two Dimension, Dynamic Array
  5. VBA-Excel: Arrays – One Dimension, Static Array