Oh, come on:

public String repeat(char a, int b)
{
         StringBuffer result = new StringBuffer(b);
         for (int i=0; i<b; i++)
         {
                 result.append(a);
         }
         return result.toString();
}


>From: Peter Dolukhanov <[EMAIL PROTECTED]>
>Reply-To: A mailing list about Java Server Pages specification and
>reference <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Re: Passing "array parameters" from one page to another
>Date: Thu, 16 May 2002 20:45:08 +0100
>
>Surely you can implement that very easily?
>
>public String repeat(char a, int b)
>{
>         String result = "";
>         for (int i=0; i<b; i++)
>         {
>                 result += a;
>         }
>         return result;
>}
>
>Regards,
>Peter Dolukhanov
>
>-----Original Message-----
>From: A mailing list about Java Server Pages specification and reference
>[mailto:[EMAIL PROTECTED]] On Behalf Of Emmanuel Eze
>Sent: 16 May 2002 15:08
>To: [EMAIL PROTECTED]
>Subject: Re: Passing "array parameters" from one page to another
>
>Hi all,
>
>Does anyone know any java class or method that will enable me repeat a
>character n times?
>
>Example:  if I want "******", I will call methodname('*',6).
>
>Thanks in advance
>
>Emma
>
>========================================================================
>===
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
>DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
>
>===========================================================================
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
>DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com


_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail.
http://www.hotmail.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to