The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Remove Trailing spaces after a delimiter kiran_418 UNIX for Dummies Questions & Answers 1 04-29-2008 02:19 PM
How to remove trailing spaces mahek_bedi UNIX for Dummies Questions & Answers 2 08-10-2007 07:21 AM
Removing leading and trailing spaces of data between the tags in xml. jhmr7 UNIX for Dummies Questions & Answers 2 05-18-2005 10:27 AM
Strip leading and trailing spaces only in a shell variable with embedded spaces jerardfjay Shell Programming and Scripting 6 03-07-2005 02:24 PM
Adding Trailing Spaces to a file 222001459 UNIX for Dummies Questions & Answers 1 11-04-2004 03:23 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 10-28-2003
sleepster sleepster is offline
Registered User
  
 

Join Date: Sep 2003
Posts: 16
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 but i dont really understand what it was talking about.. could someone help?

thanks
  #2 (permalink)  
Old 10-28-2003
TioTony's Avatar
TioTony TioTony is offline Forum Advisor  
Bit Pusher
  
 

Join Date: Oct 2001
Location: Southern California
Posts: 332
Are you using a shell script or vi to do this?

For a shell script you could use sed like this:

echo "Amy Reds , 100 , /bin/sh" | sed 's/ //g'

In vi it is very similar

:%s/ //g

This assumes you want to do this to every line of the file and also assumes you have spaces, not tabs or other whitespace.

If you can give more specifics I am sure you will get a more specific answer.
  #3 (permalink)  
Old 10-29-2003
sleepster sleepster is offline
Registered User
  
 

Join Date: Sep 2003
Posts: 16
thanks for your reply

i am using vi to do this.. i tried sed and it does not give me the output i want.. Amy Reds , 100 , /bin/sh --> would give me an output without any spaces in between

i want to get the output as --> Amy Reds,100,/bin/sh
there is a space between the first name and the last name

i looked at some web pages and AWK seems to be the answer, however i dont know how to use it.

thanks.
  #4 (permalink)  
Old 10-29-2003
Ygor's Avatar
Ygor Ygor is offline Forum Staff  
Moderator
  
 

Join Date: Oct 2003
Location: -31.96,115.84
Posts: 1,402
Seems like you only want to remove only the spaces either side of a comma. Try...
Code:
echo "Amy Reds , 100 , /bin/sh" | sed 's/[ ]*,[ ]*/,/g'
  #5 (permalink)  
Old 10-29-2003
sleepster sleepster is offline
Registered User
  
 

Join Date: Sep 2003
Posts: 16
yes Ygor, that almost does it

could you explain what the symbols [ ] and * mean here?

also what if there are spaces in front of and behind the line?

" Amy Reds , 100 , /bin/sh "

thanks
  #6 (permalink)  
Old 10-29-2003
Simerian Simerian is offline
Registered User
  
 

Join Date: Oct 2003
Location: United Kingdom
Posts: 37
Regular Expressions

The pattern represents a regular expression

[ ] denotes a range of characters within the bracketed boundary, in this case a single space.

The following * denotes "0 or more occurences".

Thus, the pattern, [ ]* denotes a pattern match for 0 or more spaces. Places either side of a comma they produce the effect of mathcing a comma surrounded by spaces and then converting the matched string to a single comma.

You may also want to check up on the use of [:space:] which essentially matches any whitespace (i.e. tabs also).
  #7 (permalink)  
Old 10-29-2003
Ygor's Avatar
Ygor Ygor is offline Forum Staff  
Moderator
  
 

Join Date: Oct 2003
Location: -31.96,115.84
Posts: 1,402
To remove spaces either side of a comma and leading/trailing spaces. Try...
Code:
sed -e 's/[ ]*,[ ]*/,/g' -e 's/^[ ]*//' -e 's/[ ]*$//' file1
Where...

[ ]* = any number of spaces
^ = beginning of line
$ = end of line

man regexp for more details.

You could also use awk, if you prefer...
Code:
awk 'BEGIN{FS=OFS=","}{for(i=1;i<=NF;i++)gsub("(^[ ]*)|([ ]*$)","",$i)};1' file1
Sponsored Links
Closed Thread

Bookmarks

Tags
regex, regular expressions

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 05:07 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0