The UNIX and Linux Forums  

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 here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
string with blank spaces psalas UNIX for Dummies Questions & Answers 4 04-16-2008 01:50 AM
sh, ksh: command to remove front spaces from a string? pseudocoder Shell Programming and Scripting 3 09-22-2007 04:57 AM
To remove Continous blank spaces from a file in UNIX arunkumar_mca UNIX for Dummies Questions & Answers 1 12-07-2006 10:10 PM
Variable has spaces around the string, need to remove them mikey20 Shell Programming and Scripting 4 10-13-2005 05:09 PM
how to remove spaces in a string using sed. radhika Shell Programming and Scripting 4 06-02-2005 12:00 PM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1  
Old 03-01-2006
Registered User
 

Join Date: Feb 2006
Posts: 7
remove blank spaces in a string

can any help how to remove blank spaces in a string?

STR="GOOD BYE"

by removing blank spaces, the string should be GOOD,BYE

thanks in advance
Reply With Quote
Forum Sponsor
  #2  
Old 03-01-2006
Registered User
 

Join Date: Dec 2005
Location: India
Posts: 218
Quote:
echo $STR | awk '{print $1","$2}'
should work, i have not tested it
Reply With Quote
  #3  
Old 03-01-2006
zazzybob's Avatar
Registered Geek
 

Join Date: Dec 2003
Location: Melbourne, Australia
Posts: 2,100
Well, according to that, you want to replace the space with a comma?

echo "$STR" | tr ' ' ','
echo "$STR" | sed 's/ /,/g' # g isn't strictly needed here

Cheers
ZB
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 04:06 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