home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / repeatstring.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  768 b   |  31 lines

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