RepeatString Example
RepeatString returns a string created from string, repeated
a specified number of times.
- RepeatString("-", 10): #RepeatString("-", 10)#
- RepeatString("<BR>", 3): #RepeatString("
", 3)#
- RepeatString("", 5): #RepeatString("", 5)#
- RepeatString("abc", 0): #RepeatString("abc", 0)#
- RepeatString("Lorem Ipsum", 2):
#RepeatString("Lorem Ipsum", 2)#