Help for this page

Select Code to Download


  1. or download this
    use Win32::OLE;
    
    ...
        # Output: 4265696a696e67 [ ASCII ]
        hex_dump_cell($WorkSheet, 1, 3);
    }
    
  2. or download this
    xlApp = Dispatch("Excel.Application")
    xlBook = xlApp.Workbooks(1)
    ...
    >>> print xlBook.Sheets(1).Cells(1,3).Value
    Beijing
    >>>