Sponsored Content
Full Discussion: pad Zeros
Top Forums UNIX for Dummies Questions & Answers pad Zeros Post 302113801 by mgirinath on Tuesday 10th of April 2007 09:55:59 AM
Old 04-10-2007
sorry I should have specified it more clear...

I may also get numbers like this...
Code:
16
116
1116

all these should be populated with leading zero's and length equal to 8
00000016
00000116
00001116
....

 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

number pad?

Is there anyway to use the fr*$%& number pad in VI? Anyway? Anyway at all? All it does now random movements and inserts of characters (2 Replies)
Discussion started by: nelsonenzo
2 Replies

2. Shell Programming and Scripting

Pad zeros to a number

Pad zeros to a number and assign it to a variable like i get 1 in $i ,i want it to be $i as 01 (6 Replies)
Discussion started by: anumkoshy
6 Replies

3. UNIX for Dummies Questions & Answers

pad

Hi All I need a pad a . to befoure a last digi ex 1258 --> 125.8 help to do thanks (4 Replies)
Discussion started by: nalakaatslt
4 Replies

4. Programming

How to right pad with zeros using sprintf?

I need to right-pad with zeros a string by using (s)printf. I looked up the manual and tried with printf("%-19s", buffer); which right-pad the string with spaces. So I tried printf("%019s", buffer); which left-pad the string with zeros. So I tried both printf("%-019s", buffer);... (9 Replies)
Discussion started by: emitrax
9 Replies

5. Shell Programming and Scripting

Pad Zeros at the end

I have number/strings like below input =23412133 output = 234121330000 (depends on the number give at runtime) i need to padd zeros based on runtime input . i tried below printf ' %d%04d\n', "23412133"; But the precision 4 is static here how can i pass this as runtime input. i am... (11 Replies)
Discussion started by: greenworld123
11 Replies

6. Shell Programming and Scripting

How to pad with leading zeros for current time?

I'm using cygwin bash to submit scheduled tasks (kinda like cron jobs) in windows and the following script is giving me grief. I need to format the current time with leading zeros before 10AM for the hour field. In this example, I manually typed in "09:50" instead of using the `printf...`... (2 Replies)
Discussion started by: siegfried
2 Replies

7. UNIX for Beginners Questions & Answers

Pad 0 to the right

I need to pad 0 to a number on the right. to make it 9 digit in total. My number is 2457 output should be 245700000 Please do wrap your samples/codes into CODE TAGS as per forum rules. (3 Replies)
Discussion started by: varun22486
3 Replies
prefresh(3cur)															    prefresh(3cur)

Name
       prefresh, pnoutrefresh - refresh pad

Syntax
       #include <cursesX.h>

       int prefresh(pad, pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol)
       WINDOW *pad;
       int pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol;

       int pnoutrefresh(pad, pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol)
       WINDOW *pad;
       int pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol;

Description
       The routine copies the specified pad to the physical terminal screen.  It takes account of what is already displayed on the screen to opti-
       mize cursor movement.

       The routine copies the named pad to the virtual screen.	It then compares the virtual screen with the  physical	screen	and  performs  the
       actual update.

       These routines are analogous to the routines and except that pads, instead of windows, are involved.  Additional parameters are also needed
       to indicate what part of the pad and screen are involved.  The upper left corner of the part of the pad to be displayed is specified by and
       The co-ordinates and specify the edges of the screen rectangle that will contain the selected part of the pad.

       The  lower right corner of the pad rectangle to be displayed is calculated from the screen co-ordinates.  This ensures that the screen rec-
       tangle and the pad rectangle are the same size.

       Both rectangles must be entirely contained within their respective structures.

Return Values
       The and functions return OK on success and ERR on error.

See Also
       wnoutrefresh(3cur), wrefresh(3cur)

																    prefresh(3cur)
All times are GMT -4. The time now is 09:13 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy