The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
Google UNIX.COM


UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
trimming zeros mohan705 UNIX for Advanced & Expert Users 3 03-23-2008 07:38 AM
trimming white spaces briskbaby Shell Programming and Scripting 9 09-23-2006 03:10 PM
Trimming a string fastgoon Shell Programming and Scripting 2 07-27-2006 09:02 AM
spaces trimming while assigning to a variable Lokesha SUN Solaris 2 06-06-2006 11:09 PM
trimming a file... alwayslearningunix UNIX for Dummies Questions & Answers 1 04-23-2001 11:33 AM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1  
Old 07-07-2008
Registered User
 

Join Date: Feb 2007
Posts: 36
Trimming the spaces

Hi,
How can I remove the unwanted spaces in the line.
123456 789 ABC DEF. - I wanna remove the sapces in this line, I need the output 123456789ABCDEF.

Pls help me......
Reply With Quote
Forum Sponsor
  #2  
Old 07-07-2008
s93366's Avatar
Registered User
 

Join Date: Apr 2002
Location: Sweden
Posts: 158
example:

Code:
echo "1 2 3 4 5" |tr -d [:SPACE:]

will do the trick

/peter

Last edited by radoulov; 07-07-2008 at 02:43 AM. Reason: added code tags
Reply With Quote
  #3  
Old 07-07-2008
Registered User
 

Join Date: Jul 2008
Posts: 3
Code:
echo 123456 789 ABC DEF | sed "s/ //g"
This might help u!

Last edited by radoulov; 07-07-2008 at 02:43 AM. Reason: added code tags
Reply With Quote
  #4  
Old 07-07-2008
Moderator
 

Join Date: Dec 2003
Location: /dev/fl
Posts: 1,046
Code:
$ str="123456 789 ABC DEF."
$ print ${str// /}
123456789ABCDEF.
$
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 02:00 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0