home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / repeatstring.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  721 b   |  30 lines

  1. <!--- This example shows RepeatString --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>
  7. RepeatString Example
  8. </TITLE>
  9. </HEAD>
  10.  
  11. <BODY bgcolor=silver>
  12.  
  13. <H3>RepeatString Example</H3>
  14.  
  15. <P>RepeatString returns a string created from
  16. <I>string</I> being repeated a specified number
  17. of times.
  18.  
  19. <UL>
  20.     <LI>RepeatString("-", 10): <CFOUTPUT>#RepeatString("-", 10)#</CFOUTPUT>
  21.     <LI>RepeatString("<BR>", 3): <CFOUTPUT>#RepeatString("<BR>", 3)#</CFOUTPUT>
  22.     <LI>RepeatString("", 5): <CFOUTPUT>#RepeatString("", 5)#</CFOUTPUT>
  23.     <LI>RepeatString("abc", 0): <CFOUTPUT>#RepeatString("abc", 0)#</CFOUTPUT>
  24.     <LI>RepeatString("Lorem Ipsum", 2): <CFOUTPUT>#RepeatString("Lorem Ipsum", 2)#</CFOUTPUT>
  25. </UL>
  26.  
  27. </BODY>
  28.  
  29. </HTML>       
  30.