Table / Boxes Generation in PERL


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Table / Boxes Generation in PERL
# 1  
Old 08-27-2012
Table / Boxes Generation in PERL

Hi all,
I was wondering, if there is any way to generate boxes/tables using perl to represent some data in better format.

input :
Code:
Name SAlary
pranav 10000
ajay 5000
shri 15000

output :
Code:
_________________________
|Name         |Salary            |
-----------------------------
|Pranav       |10000            |
|ajay          |5000              |
|shri           |15000             |
-----------------------------

This output is not good actually, i am just trying to show how the output should be.

I am looking for something like TABs / Boxes / Tables to present the data.
# 2  
Old 08-27-2012
Hopefully this should get you rolling:

Code:
printf("|%20s|%20s|\n", "fleeb", "tong");

# 3  
Old 08-27-2012
Quote:
Originally Posted by Corona688
Hopefully this should get you rolling:

Code:
printf("|%20s|%20s|\n", "fleeb", "tong");


thanks for the suggestion sir, but i am not talking about formating the input when we print. Because the input data can vary dynamically.
I m talking about proper table generation.

something like HTML tabs.

is there any CPAN which we can use to automatically generate tables or boxes, like ANSIColor which we use to format coloring options of data.
# 4  
Old 08-27-2012
If it's for general-purpose data, does it need to be perl? Linux often has the column utility for instance...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Generation of Regex for Perl script

I want to generate regex for this kind of expression and want to find and replace. like : ----> basically i want to find anything that match a pattern like this and remove the whole thing Please looking for some suggestions (1 Reply)
Discussion started by: utkarshkhanna44
1 Replies

2. Web Development

How to get input text boxes populated / perl cgi?

Hi, I know how to populate a combo box or a drop down list box which I do as under : Query that gets the data for the drop down box : $qry = "select \"EmployeeID\" AS empid, \"FirstName\"::text || ' ' ||\"LastName\"::text as name from \"Employees\""; $qq =... (1 Reply)
Discussion started by: terrykhatri531
1 Replies

3. Shell Programming and Scripting

Perl: Writing table values to a file

I have a file like this, 1,a,saurav 2,b,rout I want to show this file in a perl cgi page table and want to add a column which will contain a text box. There I will give some manual input, which will be written to the existing file(or a new file) in below format. 1|a|saurav|bangalore... (2 Replies)
Discussion started by: sauravrout
2 Replies

4. Shell Programming and Scripting

Report generation using perl script

Hi, I have a perl script to read the log file and create a report from it. I have the script file and log file in a different directories. Now i have pipe the log file data to the perl script to create the report (HMTL file). I am using the below command this isn't working tail -f... (4 Replies)
Discussion started by: vel4ever
4 Replies

5. Shell Programming and Scripting

How to redirect the selected table to file in perl?

Hi, I am connecting to oracle database using perl. I want to redirect the selected output to file. I am not able to do that in Oracle. Here is the code. SQL> SELECT name INTO OUTFILE "/orahome/test.txt" FROM dummy; * ERROR at line 1:... (1 Reply)
Discussion started by: vanitham
1 Replies

6. Shell Programming and Scripting

How to select the rows from oracle table using perl?

Hi, I am connecting to oracle database using perl. I am able to connect but i am not able to get all the rows from the table. Here is the code. #!/usr/bin/perl use DBI; my $dbh=DBI->connect("DBI:Oracle:student","class","welcome") or die "Couldnot connect oracle Database";... (1 Reply)
Discussion started by: vanitham
1 Replies

7. Shell Programming and Scripting

how to import external HASH table in PERL???

hello, I am creating a HASH table using file1.pl :- I want to retrieve the content of the hash table created above from another file named file2.pl :- The problem is that if I separate like this into 2 files.Then it says that HASH table is not created.So can you please tell me how to... (2 Replies)
Discussion started by: nsharath
2 Replies

8. HP-UX

to create a oracle table in perl script

Hi all, I have to create table for each month inside a perl script. tablename_monthnameyear. megh_aug2008 for august 2008. megh_sep2008 for september 2008. just like the logfiles created on date basis. thanks megh (1 Reply)
Discussion started by: megh
1 Replies

9. Shell Programming and Scripting

lookup table in perl??

hi, i am very much new in perl and have this very basic question in the same:( the requirement is as below: i have an input file (txt file) in which i have fields invoice number and customer number. Now i have to take input this combination of invoice n customer number and check in a... (2 Replies)
Discussion started by: Bhups
2 Replies

10. Programming

text boxes, radio buttons , check boxes in c++ on unix

Hi ! Please tell me how to get radio buttons, text boxes , check boxes , option buttons , pull down menus in C++ on Unix. I think it would be done using curses.h ..but that's all i know. TIA, Devyani. (3 Replies)
Discussion started by: devy8
3 Replies
Login or Register to Ask a Question