Pascal

Moderators: None (Apply to moderate this forum)
Number of threads: 4095
Number of posts: 14004

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Display Contents of CSV files Posted by Ronnie_19 on 13 Jan 2007 at 5:44 AM
How can i Display contents of a csv file in the apropriate order as follows

Sampl CSV File
Riddick Borg, 128,14


Will be displayed on screen as

Name: Riddick Borg
Weight : 128
Age : 14

This should be done by using procedure DisplayEntry(name,weight,age)
Report
Re: Display Contents of CSV files Posted by zibadian on 13 Jan 2007 at 6:28 AM
: How can i Display contents of a csv file in the apropriate order as follows
:
: Sampl CSV File
: Riddick Borg, 128,14
:
:
: Will be displayed on screen as
:
: Name: Riddick Borg
: Weight : 128
: Age : 14
:
: This should be done by using procedure DisplayEntry(name,weight,age)
:
procedure DisplayEntry(name, weight, age: string);
begin
  writeln('Name: ', name);
  etc.
end;




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.