Site hosted by Angelfire.com: Build your free website today!
NAME
  STRING$ Function

SYNOPSIS
  STRING$(length%,{ascii-code% | stringexpression$})
      o length%              The length of the string.
      o ascii-code%          The ASCII code of the repeating character.
      o stringexpression$    Any string expression. STRING$ fills the string
                             with the first character in stringexpression$.

DESCRIPTION
  Returns a string of a specified length made up of a repeating character.

  Example:
      PRINT STRING$(5, "-");
      PRINT "Hello";
      PRINT STRING$(5, "-")

SEE ALSO
  ASCII