Front page | perl.beginners |
Postings from January 2002
@$
Thread Next
From:
McCollum, Frank
Date:
January 7, 2002 07:09
Subject:
@$
Message ID:
59B292A4FEF3D411A10600508B6F27B2036C4D3F@clttmp21.ncmi.com
What does the "@$" sign indicate? I have a value in @$row in the code below
that I want to strip out any html tags. I tried to use "s/\<*\>//g;" but it
gives me an error ("Can't modify array deref in substitution").
foreach $ts ($te->table_states) {
print "Table (", join(',', $ts->coords), "):\n";
foreach $row ($ts->rows) {
print @$row;
print join(',', @$row), "\n";
}
}
Thanks,
Frank McCollum
Bank Of America Securities, LLC
frank.mccollum@bankofamerica.com
(704) 388-8894
Thread Next