Formula Engine Reference Guide
 

 

Back to Class Index

 

REPEAT(S, N)

Description
Returns the string S repeated N times.
 
Parameters
S

A string value
 
N
A numeric value
 
Examples
Z1 = "There's no place like home."
REPEAT(Z1, 1) = "There's no place like home."
 
REPEAT(Z1, 3) = "There's no place like home.There's no place like home.There's no place like home."
 
REPEAT(Z1, 0) = " "