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
split string using separetor rinku Shell Programming and Scripting 8 07-09-2008 01:52 AM
[KSH] Split string into array piooooter Shell Programming and Scripting 3 09-01-2007 09:22 AM
split string help senthilk615 Shell Programming and Scripting 4 03-27-2006 03:43 PM
split a string gazingdown Shell Programming and Scripting 3 02-09-2006 02:34 AM
split a file at a specified string jpl35 Shell Programming and Scripting 6 07-04-2002 08:41 AM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 04-23-2006
Registered User
 

Join Date: Apr 2006
Location: Raleigh,NC
Posts: 3
KSH split string into variables

Hello,
I am an intermediate scripter. I can usually find and adapt what I need by searching through previous postings, but I'm stumped.

I have a string with the format "{Name1 Release1 Type1 Parent1} {Name2 Release2 Type2 Parent2}". It is being passed as an argument into a ksh script. I need to split this string into variables such as:
Pkg1Name="Name1"
Pkg1Release="Release1"
Pkg1Type="Type1"
Pkg1Parent="Parent1"
Pkg2Name="Name2"
Pkg2Release="Release2"
Pkg2Type="Type2"
Pkg2Parent="Parent2"

Does anyone have any ideas how this may be accomplished, please?
Thanks!
D
Reply With Quote
Forum Sponsor
  #2  
Old 04-23-2006
vgersh99's Avatar
Moderator
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 3,016
echo "{Name1 Release1 Type1 Parent1} {Name2 Release2 Type2 Parent2}" | nawk -f drd.awk

drd.awk:
Code:
BEGIN {
  FS="[{}]"
  nt=split("Pkg%dName Pkg%dRelease Pkg%dType Pkg%dParent", tmplA, " ")
}
{
  for(i=2; i<=NF; i+=2) {
    n=split($i, a, " ")
    for(j=1; j<=n; j++)
      printf("%s=\"%s\"\n", sprintf(tmplA[j], i/2), a[j])
  }
}

Last edited by vgersh99; 04-23-2006 at 01:35 PM.
Reply With Quote
  #3  
Old 04-23-2006
Registered User
 

Join Date: Apr 2006
Location: Raleigh,NC
Posts: 3
Thanks. Sorry I wasn't clear. This parses the string like I want, but I need the variables to be available to the ksh script for processing later.
Reply With Quote
  #4  
Old 04-23-2006
vgersh99's Avatar
Moderator
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 3,016
Quote:
Originally Posted by drd_2b
Thanks. Sorry I wasn't clear. This parses the string like I want, but I need the variables to be available to the ksh script for processing later.
Code:
#!/bin/ksh

$(echo "{Name1 Release1 Type1 Parent1} {Name2 Release2 Type2 Parent2}" | nawk -f drd.awk)
Reply With Quote
  #5  
Old 04-23-2006
Registered User
 

Join Date: Apr 2006
Location: Raleigh,NC
Posts: 3
Excellent! That worked.
I also had to add "export" to the printf statement and removed the quotes surrounding the variable values. So my .awk file ended up:

BEGIN {
FS="[{}]"
nt=split("Pkg%dName Pkg%dRelease Pkg%dType Pkg%dParent", tmplA, " ")
}
{
for(i=2; i<=NF; i+=2) {
n=split($i, a, " ")
for(j=1; j<=n; j++)
printf("export %s=%s\n", sprintf(tmplA[j], i/2), a[j])
}

Thanks so much for your prompt help!
D
Reply With Quote
  #6  
Old 04-23-2006
vgersh99's Avatar
Moderator
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 3,016
Congratulations!
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




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