REPEAT$ function

Purpose:

REPEAT$ returns a concatenated string of Count occurrences of Pattern.

Syntax:

RetStr = REPEAT$(Count AS INTEGER, Pattern AS STRING)

Return Value:

  • Data type: STRING
    RetStr A string concatenated from Count occurrences of Pattern.

Parameters:

  • Data type: INTEGER
    Count The number of times Pattern is to be repeated.
  • Data type: STRING
    Pattern The string to be copied to RetStr.

See also STRING$ function.

BCX Console Sample Programs using the REPEAT$ function.