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
Perl: array, assigning multi-word sentences with quotes gctaylor Shell Programming and Scripting 4 09-05-2008 02:11 PM
adding single word to multiple line. paulds Shell Programming and Scripting 6 07-25-2008 06:31 PM
tar command help -- extract single file icefish UNIX for Dummies Questions & Answers 7 07-01-2008 02:02 PM
perl newbie: how to extract an unknown word from a string wolwy_pete Shell Programming and Scripting 3 03-23-2008 10:41 AM
tar: extract single file to different filepath littleIdiot Shell Programming and Scripting 3 02-29-2008 09:41 AM

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 02-11-2009
phudgens phudgens is offline
Registered User
  
 

Join Date: Feb 2009
Location: Denver
Posts: 40
Extract single or multi word string in Cshell

I am using the following code:

set LASInputFile = `ls *.[Ll][Aa][Ss] | head -1`
set COMPLine = `grep -i :COMPANY $LASInputFile`


to extract the following line from my input file:


COMP. XYZ Public Company :COMPANY NAME


I now need to extract the full name of the company which may be a single word or multiple words separated by white space as in this example. I study awk and sed but I just can't figure out how to code for this.

Thanks,

Paul H.
Denver
  #2 (permalink)  
Old 02-11-2009
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,116
Code:
echo 'COMP. XYZ Public Company :COMPANY NAME' | sed 's/.*:\(.*\)/\1/'
echo 'COMP. XYZ Public Company :COMPANY NAME' | awk -F: '{print $NF}'
  #3 (permalink)  
Old 02-11-2009
phudgens phudgens is offline
Registered User
  
 

Join Date: Feb 2009
Location: Denver
Posts: 40
Thanks for the help. In both cases, the code extracted the string: "COMPANY NAME". What I'm hoping to get is (in my example) "XYZ Public Company", or whatever (delimited or non-delimited) string appears between "COMP." and ":COMPANY NAME".

Thanks,

Paul H.
  #4 (permalink)  
Old 02-11-2009
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,116
Code:
echo 'COMP. XYZ Public Company :COMPANY NAME' | sed 's/^[^ ][^ ]* *\([^:][^:]*\)[ ][ ]*:.*/\1/'

Last edited by vgersh99; 02-11-2009 at 02:49 PM.. Reason: rid of the trailing spaces
  #5 (permalink)  
Old 02-11-2009
avronius avronius is offline VIP Member  
VIP Member
  
 

Join Date: Apr 2008
Location: Calgary
Posts: 305
This won't work?
Code:
awk -F: '{print $1}' file_with_list | awk -F. '{print $2}'
  #6 (permalink)  
Old 02-11-2009
Franklin52 Franklin52 is offline Forum Staff  
Moderator
  
 

Join Date: Feb 2007
Posts: 4,212
Another one with sed:

Code:
sed 's/COMP\. \(.*\) :COMPANY NAME/\1/'
Regards
  #7 (permalink)  
Old 02-11-2009
cfajohnson's Avatar
cfajohnson cfajohnson is offline Forum Advisor  
Shell programmer, author
  
 

Join Date: Mar 2007
Location: Toronto, Canada
Posts: 2,310
Quote:
Originally Posted by avronius View Post
This won't work?
Code:
awk -F: '{print $1}' file_with_list | awk -F. '{print $2}'

Why two calls to awk?

Code:
awk -F: '{ split($1,a,"."); print a[2] }' file_with_list
Sponsored Links
Closed Thread

Bookmarks

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 06:20 AM.


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