String function

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Karl Irvin

    #1

    String function


    Is there a function to populate a string with say 50 dashes

    Something like

    astring = function??("-",50)


  • Rick Brandt

    #2
    Re: String function

    Karl Irvin wrote:[color=blue]
    > Is there a function to populate a string with say 50 dashes
    >
    > Something like
    >
    > astring = function??("-",50)[/color]

    String(50, "-")

    You almost answered yourself :-)

    --
    I don't check the Email account attached
    to this message. Send instead to...
    RBrandt at Hunter dot com


    Comment

    • Dennis Mosco

      #3
      Re: String function

      String(50,"-")

      "Karl Irvin" <88karl3200@com cast.net> wrote in message
      news:Y5WdnaNKcb 7K6u_fRVn-2g@comcast.com. ..[color=blue]
      >
      > Is there a function to populate a string with say 50 dashes
      >
      > Something like
      >
      > astring = function??("-",50)
      >[/color]


      Comment

      Working...