| Subject: | Re: Concatenating Strings |
|---|---|
| From: | Rob Dixon |
| Date: | Tue, 25 Mar 2008 01:59:20 +0000 |
| Newsgroups: | perl.beginners |
kens wrote:
for my $count (0 .. $#strA) {
print "[$count] = $strA[$count]\n";
}
**OR**
my $count = 0;
foreach (@strA) {
print "[$count] = $strA[$count]\n";
$count++;
}
Rob
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: Concatenating Strings, Randal L. Schwartz |
|---|---|
| Next by Date: | Re: help witht he ffmpeg::Command perl module, Nasser Al-Hilal |
| Previous by Thread: | Re: Concatenating Strings, Kens |
| Next by Thread: | Re: Concatenating Strings, Bobby |
| Indexes: | [Date] [Thread] [Top] [All Lists] |