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
[EMAIL PROTECTED]
(704) 388-8894

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to