$FUNCNAME$
  REPLICATE()
$CATEGORY$
  STRING
$SUMMARY$
   Return a string repeated a specified number of times
$LANG_RU$
    ,    .
$SYNTAX$
     REPLICATE(<cString>, <nCount>) --> cRepeatedString
$LANG_RU$
     REPLICATE(< >, <- >) -->   
$ARGUMENTS$
     <cString> is the character string to be repeated.
     <nCount> is the number of times to repeat <cString>.
$LANG_RU$
     < > -   .
     <- > -   ,  
      < >.
$RETURNS$
     REPLICATE() returns a character string up to a maximum of 65,535 (64K)
     bytes in length.  Specifying a zero as the <nCount> argument returns a
     null string ("").
$LANG_RU$
     REPLICATE()      65 535 (64)
     .    ,  , 
        ("").
$DESCRIPTION$
     REPLICATE() is a character function that repeatedly displays, prints, or
     stuffs the keyboard with one or more characters.  REPLICATE() is like
     the SPACE() function, which returns a specified number of space
     characters.
$LANG_RU$
     REPLICATE() -     , 
          ,   
            .
     REPLICATE()  SPACE(),   
     .
$EXAMPLES$
       These examples demonstrate REPLICATE() repeating strings:

	? REPLICATE("*", 5)           // Result: *****
	? REPLICATE("Hi ", 2)         // Result: Hi Hi
	? REPLICATE(CHR(42), 5)       // Result: *****

       This example uses REPLICATE() to stuff the keyboard with
	several Down arrow keys:

	#include "Inkey.ch"
	KEYBOARD REPLICATE(CHR(K_DOWN), 25)
$LANG_RU$
           REPLICATE():

       ? REPLICATE("*", 5)       // : *****
       ? REPLICATE("Hi ", 2)     // : Hi Hi
       ? REPLICATE(CHR(42), 5)   // : *****

         REPLICATE()    
            < >:

       #include "Inkey.ch"
       KEYBOARD REPLICATE(CHR(K_DN), 25)
$SEEALSO$
  SPACE()
$END$
