in reply to Win32::OLE reading word file with tables
posting quickly because the website is unstable and I am getting timeouts when loading pages# Iterate through rows and count columns foreach my $row_index (1 .. $table->Rows->Count) { my $row = $table->Rows->Item($row_index); my $column_count = $row->Cells->Count; print "Row $row_index has $column_count columns.\n"; }
|
|---|