Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by aNewBeginning

  1. aNewBeginning

    How to form a string(no spaces) from the elements of an array?

    Suppose I wish to print 1234567890 x 3, and I wish to implement it in a reasonable way as follows: my @count_to_ten = 0..9; my $number_ruler = @count_to_ten x 3; #number_ruler is "101010" or my $number_ruler = "@count_to_ten" x3; #number_ruler is 0 1 2 3 4 5 6 7 8 90 1 ..... Is it possible to...

Part and Inventory Search

Back
Top