Sponsored Content
Top Forums Programming SED - how do I convert a decimal number to asterisk Post 302624233 by hroptatyr on Monday 16th of April 2012 03:58:13 AM
Old 04-16-2012
How about?

Code:
sed 's/ 0\.0/*/g'

 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Convert exponential value to decimal

Hi, Here is my script to read a file into array: awk -F '+' ' # load first file into array indexed by fields 1 and 2 NR == FNR { file1nr = FNR for (i=3; i<NF; i++) { file1 = $i } I have this... (5 Replies)
Discussion started by: Sangtha
5 Replies

2. Shell Programming and Scripting

Convert hex to decimal

can someone help me in converting hex streams to decimal values using perl script Hex value: $my_hex_stream="0c07ac14001676"; Every hex value in the above stream should be converted in to decimal and separated by comma. The output should be: 12,07,172,20,00,22,118 (2 Replies)
Discussion started by: Arun_Linux
2 Replies

3. Shell Programming and Scripting

Convert hexadecimal value in decimal value

hi all, this is my script: #! /bin/sh minutes=$( { i2cget -f -y 0 0x51 3; } 2>&1 ) minutes=${minutes:2} hour=$( { i2cget -f -y 0 0x51 4; } 2>&1 ) hour=${hour:2} day=$( { i2cget -f -y 0 0x51 5; } 2>&1 ) day=${day:2} month=$( { i2cget -f -y 0 0x51 7; } 2>&1 ) month=${month:2} ... (6 Replies)
Discussion started by: enaud
6 Replies

4. UNIX for Dummies Questions & Answers

Convert hexa decimal to decimal

Hi, I want to convert two hexadecimal numbers to decimal using unix command line. 1cce446295197a9d6352f9f223a9b698 fc8f99ac06e88c4faf669cf366f60d I tried using `echo "ibase=16; $no |bc` printf '%x\n' "1cce446295197a9d6352f9f223a9b698" but it doesn't work for such big number it... (4 Replies)
Discussion started by: sudhakar T
4 Replies

5. Shell Programming and Scripting

Decimal conversion number of the form x.xx to 0x.xx, sed?

Hello I have a file of the form ... num 0.12 num num num 25.53 num num num 7.82 num num ...... and I want to convert the 2nd field of each line adding a "0" at the numbers >= 0 and < 10 so the output will have the form: ... num 00.12 num num num 25.53 num num num 07.82 num... (10 Replies)
Discussion started by: phaethon
10 Replies

6. Programming

Urgent help needed.. C++ program to convert decimal to hexa decimal

Hi , seq can be 0...128 int windex = seq / 8; int bindex = seq % 8; unsigned char bitvalue = '\x01' << (7-bindex) ; bpv.bitmapvalue = bitvalue; This is the part of a program to convert decimal to bitmap value of hexadecimal. I want this to change to convert only to... (1 Reply)
Discussion started by: greenworld123
1 Replies

7. Shell Programming and Scripting

Sed/awk command to convert number occurances into date format and club a set of lines

Hi, I have been stuck in this requirement where my file contains the below format. 20150812170500846959990854-25383-8.0.0 "ABC Report" hp96880 "4952" 20150812170501846959990854-25383-8.0.0 End of run 20150812060132846959990854-20495-8.0.0 "XYZ Report" vg76452 "1006962188"... (6 Replies)
Discussion started by: Chinmaya Kabi
6 Replies

8. UNIX for Dummies Questions & Answers

Convert hexadecimal value to decimal value

Hi All, cat filename | awk '{print $1, $2, $4, $5, $6, $7, $8, $9, $10;}' | awk 'NF > 0' OUTPUT: 2015-01-19 00:12:32 00000000fbfa0000 000000009ae5cf80 014d 015d 0017 003c 0362de20 2015-01-19 00:13:52 00000000fc820000 00000000994c6758 014c 015d 000b 003c 08670250 2015-01-19 00:14:25... (12 Replies)
Discussion started by: sam@sam
12 Replies

9. UNIX for Advanced & Expert Users

Convert a numeric to 2 decimal point value

Hi , I have a file which contains text like A|Mau|Code|12|Detail B|Mau|Code|20|Header I want to write a command using awk which will output A|Mau|Code|12.00|Detail B|Mau|Code|20.00|Header I used a command like awk -F"|" {printf "%s|%s|%s|%.2f|%s",$1,$2,$3,$4,$5}' which does the... (4 Replies)
Discussion started by: LoneRanger
4 Replies
XtNameToWidget()														  XtNameToWidget()

Name
  XtNameToWidget - find a named widget.

Synopsis
  Widget XtNameToWidget(reference, names);
	 Widget reference;
	 String names;

Inputs
  reference Specifies the widget from which the search is to start.  Must be of class Core or any subclass.

  names     Specifies the partially qualified name of the desired widget.

Returns
  A child of reference that matches names.

Description
  XtNameToWidget()  returns a descendant of the reference widget whose name matches the specified names.  The names argument specifies a sim-
  ple object name or a series of simple object name components separated by periods or asterisks.  Asterisks have the same  meaning  to  this
  function as they do in a resource file.

  The "Algorithm" section below explains the procedure XtNameToWidget() uses to find the named child.

Usage
  If  you  want  to look up an immediate child of a widget, simply pass the widget and the child's unqualified name.  If you need to lookup a
  descendant, you can provide a fully qualified name to that descendant, or if you don't know the full name, or if you don't  even  know  how
  many levels removed that descendant is, you can use an asterisk before the name.

  Note that if there is more than one child with the specified name, it is undefined which will be returned.

  You  can  use XtNameToWidget() to hide the details of a user interface and for modular programming.  If module A creates an interface which
  contains a text widget, and module B need to get the contents of the text widget, module A could export the text widget in a	global	vari-
  able,  or instead, it could simply define the name of the text widget as part of the module definition.  Then module B, or any other module
  could look up that widget with XtNameToWidget() when it is needed.  Because XtNameToWidget() supports  wildcarding,  module  A  can  freely
  change the details of the widget hierarchy it creates as long as the name of the text widget remains unique.

Algorithm
  XtNameToWidget() returns the descendant with the shortest name that matches the specification according to the following rules (where child
  is either a popup child or a normal child if the widget is a subclass of Composite):

  o  Enumerate the object subtree rooted at reference widget in breadth-first order, qualifying the name of each object with the names of all
     its ancestors up to but not including reference.  The ordering between children of a common parent is not defined.

  o  Return  the  first  object in the enumeration that matches the specified names, where each component of names matches exactly the corre-
     sponding component of the qualified object name and an asterisk matches any series of components, including none.

  o  If no match is found, return NULL.

  Since breadth-first traversal is specified, the descendant with the shortest matching name (i.e., the fewest number of components), if any,
  will always be returned.  However, since the order of enumeration of children is undefined and since the Intrinsics do not require that all
  children of a widget have unique names, XtNameToWidget() may return any child that matches if there are multiple  objects  in  the  subtree
  with	the same name(s).  Consecutive separators (periods or asterisks) that contain at least one asterisk are treated as a single asterisk.
  Consecutive periods are treated as a single period.

See Also
  XtCreateWidget(1), XtName(1).

Xt - Object Information 													  XtNameToWidget()
All times are GMT -4. The time now is 05:15 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy