Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by perl8rookie

  1. perl8rookie

    How to convert string "000B" to hex 000B and decimal 11

    How can i convert a string numerical value into other formats such as hex or decimal? For Example: $string = "000B" I want this to be translate to a numerical value: $hex = 000B $decimal = 11 You response will be appreciated. Thanks.
  2. perl8rookie

    String comparison, don't understand why its failing for two vars

    I am using following code to read a value out of a binary file and convert it to hex, read another value from an excel file. The two values are different but when I compare these values in perl the result is a match which does not make sense. I have attached a link to download the excel...
  3. perl8rookie

    How can I create excel files with ActiveState Perl OLE interface??

    Thanks!!! That was easy.
  4. perl8rookie

    How can I create excel files with ActiveState Perl OLE interface??

    I found the following code to read an existing excel file: use Win32::OLE qw(in with); use Win32::OLE::Const 'Microsoft Excel'; $Win32::OLE::Warn = 3; # die on errors... my $Excel = Win32::OLE->GetActiveObject('Excel.Application') || Win32::OLE->new('Excel.Application'...

Part and Inventory Search

Back
Top