Horst Walther wrote:

: In a script I wish to build a name (string), which consists also an
: countervalue, derived from a loop counter.
: For the small values (0 to 9) shall the string consist the leading
: zero (00 .... 09).
: Whats to do?

foreach my $counter ( '00' .. '09' ) {
    print "$counter\n";
}


HTH,

Charles K. Clarkson
-- 
Mobile Homes Specialist
Free Market Advocate
Web Programmer

254 968-8328

Don't tread on my bandwidth. Trim your posts.

_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to