Sponsored Content
Top Forums Shell Programming and Scripting Converting Tab delimited file to Comma delimited file in Unix Post 96153 by charan81 on Wednesday 18th of January 2006 06:28:08 AM
Old 01-18-2006
Vino..No Luck..

Let me tell u my requirement..

I have a file dmlog.txt with data like this

LOAD_STAGE STAGE_LOAD COMPLETE U0 10-OCT-05
LOAD_STAGE_A D_CA_PRODUCT COMPLETE U0 10-OCT-05
LOAD_STAGE_B D_CB_PRODUCT COMPLETE U0 10-OCT-05

Now i need to convert it to

LOAD_STAGE,STAGE_LOAD,COMPLETE,U0,10-OCT-05
LOAD_STAGE_A,D_CA_PRODUCT,COMPLETE,U0,10-OCT-05
LOAD_STAGE_B,D_CB_PRODUCT,COMPLETE,U0,10-OCT-05

Can u explain me on how to proceed with this Example.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Converting Space delimited file to Tab delimited file

Hi all, I have a file with single white space delimited values, I want to convert them to a tab delimited file. I tried sed, tr ... but nothing is working. Thanks, Rajeevan D (16 Replies)
Discussion started by: jeevs81
16 Replies

2. Shell Programming and Scripting

Retrieving values from tab-delimited file in unix script

Hi I am trying to retrieve values from a tab-delimited file.I am using while read record value=`echo $record | cut -f12` done Where 12 is the column no i want retieve and record is one line of the file. But it is returning the full record. Plz help (4 Replies)
Discussion started by: akashtcs
4 Replies

3. Shell Programming and Scripting

Converting comma separated to pipe delimited file

Hi, I came across a very good script to convert a comma seperated to pipe delimited file in this forum. the script serves most of the requirement but looks like it does not handle embedded double quotes and commas i.e if the input is like 1234, "value","first,second", "LDC5"monitor",... (15 Replies)
Discussion started by: anijan
15 Replies

4. Shell Programming and Scripting

Help with converting Pipe delimited file to Tab Delimited

I have a file which was pipe delimited, I need to make it tab delimited. I tried with sed but no use cat file | sed 's/|//t/g' The above command substituted "/t" not tab in the place of pipe. Sample file: abc|123|2012-01-30|2012-04-28|xyz have to convert to: abc 123... (6 Replies)
Discussion started by: karumudi7
6 Replies

5. Shell Programming and Scripting

how to convert comma delimited file to tab separator

Hi all, How can i convert comma delimited .csv file to tab separate using sed command or script. Thanks, Krupa (4 Replies)
Discussion started by: krupasindhu18
4 Replies

6. Shell Programming and Scripting

How to make tab delimited file to space delimited?

Hi How to make tab delimited file to space delimited? in put file: ABC kgy jkh ghj ash kjl o/p file: ABC kgy jkh ghj ash kjl Use code tags, thanks. (1 Reply)
Discussion started by: jagdishrout
1 Replies

7. UNIX for Dummies Questions & Answers

Need help with tab delimited file in unix

Hi, I need urgent help with a tab delimited file I am working on. This is the file : TTTT|YYYYYYY|jargon-journal|MP0000000UID||"j1, j2, j3" I need th following output: TTTT|YYYYYYY|jargon-journal|MP0000000UID||ji TTTT|YYYYYYY|jargon-journal|MP0000000UID||j2... (8 Replies)
Discussion started by: rayarnab
8 Replies

8. UNIX for Dummies Questions & Answers

Need to convert a pipe delimited text file to tab delimited

Hi, I have a rquirement in unix as below . I have a text file with me seperated by | symbol and i need to generate a excel file through unix commands/script so that each value will go to each column. ex: Input Text file: 1|A|apple 2|B|bottle excel file to be generated as output as... (9 Replies)
Discussion started by: raja kakitapall
9 Replies

9. Shell Programming and Scripting

Help/Advise please for converting space delimited string variable to comma delimited with quote

Hi, I am wanting to create a script that will construct a SQL statement based on a a space delimited string that it read from a config file. Example of the SQL will be For example, it will read a string like "AAA BBB CCC" and assign to a variable named IN_STRING. I then concatenate... (2 Replies)
Discussion started by: newbie_01
2 Replies

10. UNIX for Beginners Questions & Answers

Replace a column in tab delimited file with column in other tab delimited file,based on match

Hello Everyone.. I want to replace the retail col from FileI with cstp1 col from FileP if the strpno matches in both files FileP.txt ... (2 Replies)
Discussion started by: YogeshG
2 Replies
QLCDNumber(3qt) 														   QLCDNumber(3qt)

NAME
QLCDNumber - Displays a number with LCD-like digits SYNOPSIS
#include <qlcdnumber.h> Inherits QFrame. Public Members QLCDNumber ( QWidget * parent = 0, const char * name = 0 ) QLCDNumber ( uint numDigits, QWidget * parent = 0, const char * name = 0 ) ~QLCDNumber () enum Mode { Hex, Dec, Oct, Bin, HEX = Hex, DEC = Dec, OCT = Oct, BIN = Bin } enum SegmentStyle { Outline, Filled, Flat } bool smallDecimalPoint () const int numDigits () const virtual void setNumDigits ( int nDigits ) bool checkOverflow ( double num ) const bool checkOverflow ( int num ) const Mode mode () const virtual void setMode ( Mode ) SegmentStyle segmentStyle () const virtual void setSegmentStyle ( SegmentStyle ) double value () const int intValue () const Public Slots void display ( const QString & s ) void display ( int num ) void display ( double num ) virtual void setHexMode () virtual void setDecMode () virtual void setOctMode () virtual void setBinMode () virtual void setSmallDecimalPoint ( bool ) Signals void overflow () Properties int intValue - the displayed value rounded to the nearest integer Mode mode - the current display mode (number base) int numDigits - the current number of digits displayed SegmentStyle segmentStyle - the style of the LCDNumber bool smallDecimalPoint - the style of the decimal point double value - the displayed value Protected Members virtual void drawContents ( QPainter * p ) DESCRIPTION
The QLCDNumber widget displays a number with LCD-like digits. It can display a number in just about any size. It can display decimal, hexadecimal, octal or binary numbers. It is easy to connect to data sources using the display() slot, which is overloaded to take any of five argument types. There are also slots to change the base with setMode() and the decimal point with setSmallDecimalPoint(). QLCDNumber emits the overflow() signal when it is asked to display something beyond its range. The range is set by setNumDigits(), but setSmallDecimalPoint() also influences it. If the display is set to hexadecimal, octal or binary, the integer equivalent of the value is displayed. These digits and other symbols can be shown: 0/O, 1, 2, 3, 4, 5/S, 6, 7, 8, 9/g, minus, decimal point, A, B, C, D, E, F, h, H, L, o, P, r, u, U, Y, colon, degree sign (which is specified as single quote in the string) and space. QLCDNumber substitutes spaces for illegal characters. It is not possible to retrieve the contents of a QLCDNumber object, although you can retrieve the numeric value with value(). If you really need the text, we recommend that you connect the signals that feed the display() slot to another slot as well and store the value there. Incidentally, QLCDNumber is the very oldest part of Qt, tracing back to a BASIC program on the Sinclair Spectrum. [Image Omitted] [Image Omitted] See also QLabel, QFrame, and Basic Widgets. Member Type Documentation QLCDNumber::Mode This type determines how numbers are shown. QLCDNumber::Hex - Hexadecimal QLCDNumber::Dec - Decimal QLCDNumber::Oct - Octal QLCDNumber::Bin - Binary If the display is set to hexadecimal, octal or binary, the integer equivalent of the value is displayed. QLCDNumber::SegmentStyle This type determines the visual appearance of the QLCDNumber widget. QLCDNumber::Outline - gives raised segments filled with the background brush. QLCDNumber::Filled - gives raised segments filled with the foreground brush. QLCDNumber::Flat - gives flat segments filled with the foreground brush. MEMBER FUNCTION DOCUMENTATION
QLCDNumber::QLCDNumber ( QWidget * parent = 0, const char * name = 0 ) Constructs an LCD number, sets the number of digits to 5, the base to decimal, the decimal point mode to 'small' and the frame style to a raised box. The segmentStyle() is set to Outline. The parent and name arguments are passed to the QFrame constructor. See also numDigits and smallDecimalPoint. QLCDNumber::QLCDNumber ( uint numDigits, QWidget * parent = 0, const char * name = 0 ) Constructs an LCD number, sets the number of digits to numDigits, the base to decimal, the decimal point mode to 'small' and the frame style to a raised box. The segmentStyle() is set to Outline. The parent and name arguments are passed to the QFrame constructor. See also numDigits and smallDecimalPoint. QLCDNumber::~QLCDNumber () Destroys the LCD number. bool QLCDNumber::checkOverflow ( double num ) const Returns TRUE if num is too big to be displayed in its entirety; otherwise returns FALSE. See also display(), numDigits, and smallDecimalPoint. bool QLCDNumber::checkOverflow ( int num ) const This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Returns TRUE if num is too big to be displayed in its entirety; otherwise returns FALSE. See also display(), numDigits, and smallDecimalPoint. void QLCDNumber::display ( const QString & s ) [slot] Displays the number represented by the string s. This version of the function disregards mode() and smallDecimalPoint(). These digits and other symbols can be shown: 0/O, 1, 2, 3, 4, 5/S, 6, 7, 8, 9/g, minus, decimal point, A, B, C, D, E, F, h, H, L, o, P, r, u, U, Y, colon, degree sign (which is specified as single quote in the string) and space. QLCDNumber substitutes spaces for illegal characters. Examples: void QLCDNumber::display ( int num ) [slot] Sets the displayed value rounded to the nearest integer to num. See the "intValue" property for details. void QLCDNumber::display ( double num ) [slot] This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Displays the number num. void QLCDNumber::drawContents ( QPainter * p ) [virtual protected] Draws the LCD number using painter p. This function is called from QFrame::paintEvent(). Reimplemented from QFrame. int QLCDNumber::intValue () const Returns the displayed value rounded to the nearest integer. See the "intValue" property for details. Mode QLCDNumber::mode () const Returns the current display mode (number base). See the "mode" property for details. int QLCDNumber::numDigits () const Returns the current number of digits displayed. See the "numDigits" property for details. void QLCDNumber::overflow () [signal] This signal is emitted whenever the QLCDNumber is asked to display a too-large number or a too-long string. It is never emitted by setNumDigits(). SegmentStyle QLCDNumber::segmentStyle () const Returns the style of the LCDNumber. See the "segmentStyle" property for details. void QLCDNumber::setBinMode () [virtual slot] Calls setMode( BIN ). Provided for convenience (e.g. for connecting buttons to it). See also mode, setHexMode(), setDecMode(), setOctMode(), and mode. void QLCDNumber::setDecMode () [virtual slot] Calls setMode( DEC ). Provided for convenience (e.g. for connecting buttons to it). See also mode, setHexMode(), setOctMode(), setBinMode(), and mode. void QLCDNumber::setHexMode () [virtual slot] Calls setMode( HEX ). Provided for convenience (e.g. for connecting buttons to it). See also mode, setDecMode(), setOctMode(), setBinMode(), and mode. void QLCDNumber::setMode ( Mode ) [virtual] Sets the current display mode (number base). See the "mode" property for details. void QLCDNumber::setNumDigits ( int nDigits ) [virtual] Sets the current number of digits displayed to nDigits. See the "numDigits" property for details. void QLCDNumber::setOctMode () [virtual slot] Calls setMode( OCT ). Provided for convenience (e.g. for connecting buttons to it). See also mode, setHexMode(), setDecMode(), setBinMode(), and mode. void QLCDNumber::setSegmentStyle ( SegmentStyle ) [virtual] Sets the style of the LCDNumber. See the "segmentStyle" property for details. void QLCDNumber::setSmallDecimalPoint ( bool ) [virtual slot] Sets the style of the decimal point. See the "smallDecimalPoint" property for details. bool QLCDNumber::smallDecimalPoint () const Returns the style of the decimal point. See the "smallDecimalPoint" property for details. double QLCDNumber::value () const Returns the displayed value. See the "value" property for details. Property Documentation int intValue This property holds the displayed value rounded to the nearest integer. This property corresponds to the nearest integer to the current value displayed by the LCDNumber. This is the value used for hexadecimal, octal and binary modes. If the displayed value is not a number, the property has a value of 0. Set this property's value with display() and get this property's value with intValue(). Mode mode This property holds the current display mode (number base). Corresponds to the current display mode, which is one of BIN, OCT, DEC (the default) and HEX. DEC mode can display floating point values, the other modes display the integer equivalent. See also smallDecimalPoint, setHexMode(), setDecMode(), setOctMode(), and setBinMode(). Set this property's value with setMode() and get this property's value with mode(). int numDigits This property holds the current number of digits displayed. Corresponds to the current number of digits. If QLCDNumber::smallDecimalPoint is FALSE, the decimal point occupies one digit position. See also smallDecimalPoint. Set this property's value with setNumDigits() and get this property's value with numDigits(). SegmentStyle segmentStyle This property holds the style of the LCDNumber. <center>.nf </center> Outline and Filled will additionally use QColorGroup::light() and QColorGroup::dark() for shadow effects. Set this property's value with setSegmentStyle() and get this property's value with segmentStyle(). bool smallDecimalPoint This property holds the style of the decimal point. If TRUE the decimal point is drawn between two digit positions. Otherwise it occupies a digit position of its own, i.e. is drawn in a digit position. The default is FALSE. The inter-digit space is made slightly wider when the decimal point is drawn between the digits. See also mode. Set this property's value with setSmallDecimalPoint() and get this property's value with smallDecimalPoint(). double value This property holds the displayed value. This property corresponds to the current value displayed by the LCDNumber. If the displayed value is not a number, the property has a value of 0. Set this property's value with display() and get this property's value with value(). SEE ALSO
http://doc.trolltech.com/qlcdnumber.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qlcdnumber.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QLCDNumber(3qt)
All times are GMT -4. The time now is 06:06 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy