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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

File format for Perl

Status
Not open for further replies.

JohnStep

Programmer
Apr 19, 2000
190
US
I am prodominetly a VB and VC programmer , hense I am new to Perl. I have a question? What format does Perl save information in on disk? I.E. If I wanted to write a VB or VC program to access data saved by a perl script into a file. What format does perl save the file in??  Any help would be appreciated...  John Stephens
 
What format do you want to save it in? :)<br><br>Perl's main strength is text based info.&nbsp;&nbsp;Processing text if perl's original raison d'etre.&nbsp;&nbsp;However it's grown to the point whereby it's capable of handling literally anything you want to throw it at.&nbsp;&nbsp;Want to read databases?&nbsp;&nbsp;Look at DBI and DBD.&nbsp;&nbsp;Want to read Windows Registry?&nbsp;&nbsp;There's a module in the Win32 version to do that.&nbsp;&nbsp;Want to read some proprietary binary data?&nbsp;&nbsp;<FONT FACE=monospace>open</font> the file, <FONT FACE=monospace>read</font> it in, <FONT FACE=monospace>unpack the data</font>, and do whatever you want with it.<br><br>Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top