String Operations


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting String Operations
# 1  
Old 04-19-2006
String Operations

Hi All,

Query 1 :
I want to know how we can get a count of multipe occurrences of a particular expression in another string.

For Eg. If my string is " 12" and i need to count the number of spaces preceeding 12

Query 2 :

Also want to know how we can change the alignment of a string from left justified to right justified in Unix.

For Eg. " 12" want to change it to "12 ".

Is there any command in unix for this. ??
# 2  
Old 04-19-2006
Please try this for u r query2 i.e. left alignment
awk '{printf("%'filelength's\n",$0)}' S_file > D_file

filelength:= No of spaces u need for left alignment
S_file := Source filename
D_file:= Detination filename
# 3  
Old 04-19-2006
for query one

echo " 12" | tr -cd '\040'| fold -1 | wc -l

to align to left

echo " 12" | tr -d '\040'

Last edited by Raom; 04-21-2006 at 08:13 AM..
# 4  
Old 04-19-2006
Hi kenisand ,
Actually my problem is that i have column in a fixed length file that is right alingned. I need to change that column to make it right aligned.

The problem is that the length of the column is 5, and it can hold a max of 5 characters. So i do not know the number of spaces that are preceding a valid character.
For Eg : Records in the file are as follows :
Cl1 Cl2 Cl3
Rec 1 :ABC 3DEF
Rec 2 :EFG 34HIJ

In the above file, has 3 cols
first record is : Col1 "ABC", Col2:" 3" and col3:"DEF"
second record :Col1 "EFG", Col2:" 34" and col3:"HIJ"

Now my requirement is to change the right alignement of the 2 nd col in the file to left alignement.

I want the output to be as follows :
Cl1 Cl2 Cl3
Rec 1 :ABC3 DEF
Rec 2 :EFG34 HIJ

If i can find the number of spaces preceding the valid character then i can use the solution u hav suggested, but this count can be variable and that is the problem.
# 5  
Old 04-19-2006
Under man ksh look into typeset features. It might be of some help.
# 6  
Old 04-19-2006
Hey Raom,

Thanks a lot for that answer to my Query 1. That is exactly what i was looking for..

-Regards
Rohini
# 7  
Old 04-19-2006
Quote:
Originally Posted by Raom
for query one

echo " 12" | tr -cd '\040'| fold -1 | wc -l
Nice , anyway u can also use:
Code:
echo " 12" | tr -cd ' '|awk '{print length}'

Cheers
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File Operations

Hi Folks, Below is example of an Input data which is used, based on the last 2, 3 & 4 column, I want my first column data to be collated as shown in the output section. a,ac,tc,ic b,ac,tc,ic c,ac,tc,ic d,ac,tc,ic b,bc,tc,ic d,bc,tc,ic e,bc,tc,ic I want my output to be ... (2 Replies)
Discussion started by: nikhil jain
2 Replies

2. Shell Programming and Scripting

Shell operations from C++

Hi everyone, I need little help in shell operations from C++ program. Here I furnish the details of problem: 1. Lets say my current working path is myWorkingPath. 2. In my working path I have list of name directories and each name directory has two more sub directories say A/B. (now path to... (5 Replies)
Discussion started by: linuxUser_
5 Replies

3. Linux

Atomic Operations

Hello I am a newbie in linux. Please tell me what are atomic operations in Linux. IS i++ a atomic oparation?? Please help.. (3 Replies)
Discussion started by: aditya08
3 Replies

4. Programming

shell cursor operations

Hi I need to save the actual cursor position into variable in my script. How can I do it ? thx for help. (1 Reply)
Discussion started by: presul
1 Replies

5. Shell Programming and Scripting

String operations

Can you give me some suggestions to split below string into three parts using shell scripts.. Script has to print all alphabets before the number, then number and then all alphabets after the number.. input: chris martin 200173 845747 mech engineer output: chris martin 200173 845747 mech... (6 Replies)
Discussion started by: nram_krishna@ya
6 Replies

6. Shell Programming and Scripting

String operations

Hi All, can you tell me how to drop all preceding zeros in a number. For example, if i have a numbers like 000876838347 and 0000007854762543..how to make them as 876838347 and 7854762543. (6 Replies)
Discussion started by: nram_krishna@ya
6 Replies

7. Shell Programming and Scripting

Help on shell script (string operations)

Hey everyone. So the background of the problem is that the ps3 does not support the mkv container, but DOES support the avi one. Here is the script to convert one file with the name hardcoded in: #!/bin/sh mencoder -oac... (2 Replies)
Discussion started by: wua05
2 Replies

8. UNIX for Dummies Questions & Answers

AlphaNumeric String Operations

Hi :) I am writing a ksh I have a string of general format A12B3456CD78 the string is of variable length the string always ends with numbers (here it is 78.. it can be any number of digits may be 789 or just 7) before these ending numbers are alphabets (here it is CD can even be... (3 Replies)
Discussion started by: lakshmikanth
3 Replies

9. UNIX for Dummies Questions & Answers

File operations

Hi I have a tab delimited file with 3 fields. I need to sort this file on the first field and remove all the records where the first field has dulplicates. For eg my file is 133|arrfdfdg|sdfdsg 234|asfsdgfs|aasdfs 133|affbfsde|dgfg When this file gets sorted I need the result to be ... (2 Replies)
Discussion started by: monks
2 Replies

10. Shell Programming and Scripting

File operations

Hi there, I want some help on scripting regarding file processing. I have a scenario in which I have 10 files. (file1.txt, file2.txt....) and they are in paricular format. I want to read these files and append some text lines at the begining of each file and write this updated contents of... (2 Replies)
Discussion started by: chiragmistry21
2 Replies
Login or Register to Ask a Question