Sponsored Content
Top Forums Shell Programming and Scripting Table / Boxes Generation in PERL Post 302692269 by PranavEcstasy on Monday 27th of August 2012 10:50:04 AM
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.
 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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

7. 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

8. 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

9. 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

10. 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
Font::TTF::Table(3pm)					User Contributed Perl Documentation				     Font::TTF::Table(3pm)

NAME
Font::TTF::Table - Superclass for tables and used for tables we don't have a class for DESCRIPTION
Looks after the purely table aspects of a TTF table, such as whether the table has been read before, locating the file pointer, etc. Also copies tables from input to output. INSTANCE VARIABLES
Instance variables start with a space read Flag which indicates that the table has already been read from file. dat Allows the creation of unspecific tables. Data is simply output to any font file being created. INFILE The read file handle OFFSET Location of the file in the input file LENGTH Length in the input directory CSUM Checksum read from the input file's directory PARENT The Font::TTF::Font that table is part of METHODS
Font::TTF::Table->new(%parms) Creates a new table or subclass. Table instance variables are passed in at this point as an associative array. $t->read Reads the table from the input file. Acts as a superclass to all true tables. This method marks the table as read and then just sets the input file pointer but does not read any data. If the table has already been read, then returns "undef" else returns $self $t->read_dat Reads the table into the "dat" instance variable for those tables which don't know any better $t->out($fh) Writes out the table to the font file. If there is anything in the "data" instance variable then this is output, otherwise the data is copied from the input file to the output $t->out_xml($context) Outputs this table in XML format. The table is first read (if not already read) and then if there is no subclass, then the data is dumped as hex data $t->XML_element Output a particular element based on its contents. $t->XML_end($context, $tag, %attrs) Handles the default type of <data> for those tables which aren't subclassed $t->dirty($val) This sets the dirty flag to the given value or 1 if no given value. It returns the value of the flag $t->update Each table knows how to update itself. This consists of doing whatever work is required to ensure that the memory version of the table is consistent and that other parameters in other tables have been updated accordingly. I.e. by the end of sending "update" to all the tables, the memory version of the font should be entirely consistent. Some tables which do no work indicate to themselves the need to update themselves by setting isDirty above 1. This method resets that accordingly. $t->empty Clears a table of all data to the level of not having been read $t->release Releases ALL of the memory used by this table, and all of its component/child objects. This method is called automatically by 'Font::TTF::Font->release' (so you don't have to call it yourself). NOTE, that it is important that this method get called at some point prior to the actual destruction of the object. Internally, we track things in a structure that can result in circular references, and without calling '"release()"' these will not properly get cleaned up by Perl. Once this method has been called, though, don't expect to be able to do anything with the "Font::TTF::Table" object; it'll have no internal state whatsoever. Developer note: As part of the brute-force cleanup done here, this method will throw a warning message whenever unexpected key values are found within the "Font::TTF::Table" object. This is done to help ensure that any unexpected and unfreed values are brought to your attention so that you can bug us to keep the module updated properly; otherwise the potential for memory leaks due to dangling circular references will exist. BUGS
No known bugs AUTHOR
Martin Hosken Martin_Hosken@sil.org. See Font::TTF::Font for copyright and licensing. perl v5.10.1 2009-01-21 Font::TTF::Table(3pm)
All times are GMT -4. The time now is 03:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy