[solved] Trailing spaces


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting [solved] Trailing spaces
# 1  
Old 07-13-2010
Data [solved] Trailing spaces

Hello People

How to check whether lines in a text file have trailing spaces or not and if a line have trailing spaces then how many trailing spaces line have?


Regards
ARvind kumar
# 2  
Old 07-13-2010
How about:

Code:
[house@leonov] a="some text   "; b=$( echo "$a" | sed 's/[ ]*$//' ); c=$(( ${#a} - ${#b} )); echo "$c"
3

# 3  
Old 07-13-2010
Code:
awk '/ $/ {print length - match($0, / +$/) + 1, $0}' file

This User Gave Thanks to Scott For This Post:
# 4  
Old 07-13-2010
Hi Scottn Can you please briefly explain your solution..as i am not able to understand the solution properly provided by you or can you give me some link so that i can understand it .Thanks in Advance
# 5  
Old 07-13-2010
Quote:
Originally Posted by arvindk.monu
Hi Scottn Can you please briefly explain your solution..as i am not able to understand the solution properly provided by you or can you give me some link so that i can understand it .Thanks in Advance
It finds lines ending with a space (/ $/), and prints the number of spaces at the end of the line by subtracting the position of the first or all space at the end of the line (match($0, / +$/) from the length of the line itself ( length).

The best place to start is the awk man page. (if I'd have done that(!) the solution might have been easier):

Quote:
match(s, r)
the position in s where the regular expression r occurs, or 0 if it does not. The variables RSTART and
RLENGTH are set to the position and length of the matched string.
This User Gave Thanks to Scott For This Post:
# 6  
Old 07-14-2010
Thanks Scottn,now i understand this.My problem is solved now.Thanks a lot sir.and please tell me how to mark it as solved and close.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Want to add trailing spaces to the variable

I want to keep string/varible length to 10 even its actual length is less than 10(may be no value). so, i want to add trailing spaces to my string. :wall: "typeset -L10 myvarible" is not working, its saying invalid typset -L option. Can you please advise. (4 Replies)
Discussion started by: djaks111
4 Replies

2. Shell Programming and Scripting

Remove of extra spaces from the trailing

HI, I need the help from the experts like I have created one file with text like: a b c d e f g h i j k l So my question is that i have to write the script in which like in the first sentence it will take only one space after d and remove all the extra space in the end.I dont... (8 Replies)
Discussion started by: bhanudhingra
8 Replies

3. Shell Programming and Scripting

How to remove trailing spaces from a variable?

I am getting a value from a csv file using CUT command, however the command extracting the records with trailing spaces. I am using the result into a sql session to fetch data, because of the trailing spaces the sql session is unable to fetch any data. Please let me know, how to remove this... (2 Replies)
Discussion started by: mady135
2 Replies

4. Shell Programming and Scripting

Remove trailing spaces from file

I'm currently writing my sql results to a file and they have trailing spaces after each field. I want to get rid of these spaces and I'm using this code: TVXTEMP=$(echo $TVXTEMP|sed -e 's/\ //g') It doesn't work though. I'm not familiar with sedscript, and the other codes I've found online... (6 Replies)
Discussion started by: avillanueva
6 Replies

5. Shell Programming and Scripting

remove trailing spaces from a line

I want to remove the trailing spaces from any line of file. line ending does not follow any pattern. plz help (3 Replies)
Discussion started by: vikas_kesarwani
3 Replies

6. UNIX for Dummies Questions & Answers

Remove Trailing spaces after a delimiter

Hi, I am trying to remove trailing white spaces using this command in awk nawk -F '|' '/^TR/{t = $4 }/^LN/{gsub(/ */,"");printf "%s|%s\n", t, $0 }' $i>>catman_852_files.txt My delimiter is '|'. THere are some description fields which are being truncated. I dont want to remove spaces... (1 Reply)
Discussion started by: kiran_418
1 Replies

7. UNIX for Dummies Questions & Answers

How to remove trailing spaces

Hi, I have a file like this (ADD_MONTHS((Substr(Trim(BOTH FROM Translate(Maximum(closeDa ------------------------------------------------------------ 2007-06-30 00:00:00 I have a requirement where i need just the date. When i do: tail -1... (2 Replies)
Discussion started by: mahek_bedi
2 Replies

8. Shell Programming and Scripting

Strip leading and trailing spaces only in a shell variable with embedded spaces

I am trying to strip all leading and trailing spaces of a shell variable using either awk or sed or any other utility, however unscuccessful and need your help. echo $SH_VAR | command_line Syntax. The SH_VAR contains embedded spaces which needs to be preserved. I need only for the leading and... (6 Replies)
Discussion started by: jerardfjay
6 Replies

9. UNIX for Dummies Questions & Answers

Adding Trailing Spaces to a file

I have a text file which is not fixed width. I want to put trailing spaces to each line and make it a 100 byte fixed width file. Can someone please help me as soon as possible? Thanks, Denis (1 Reply)
Discussion started by: 222001459
1 Replies

10. Shell Programming and Scripting

Leading and Trailing Spaces

Hi, how to i remove leading and trailing spaces from a line? the spaces can be behind or in front of any field or line example of a line in the input data: Amy Reds , 100 , /bin/sh how to i get it to be: Amy Read,100,/bin/sh i saw something on this on the Man pages for AWK... (7 Replies)
Discussion started by: sleepster
7 Replies
Login or Register to Ask a Question