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
split variable values into array finalight Shell Programming and Scripting 4 05-21-2008 03:21 AM
Access value outside awk or split value of array jason.bean UNIX for Dummies Questions & Answers 1 11-26-2007 04:33 PM
split varibles and store fields into shell varible array gratus Shell Programming and Scripting 3 10-11-2007 02:50 PM
How to get array to not split at spaces? jjinno Shell Programming and Scripting 1 07-20-2007 12:06 AM
split to array in perl jaganadh Shell Programming and Scripting 3 07-06-2007 05:29 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 08-31-2007
piooooter piooooter is offline
Registered User
  
 

Join Date: Mar 2006
Posts: 24
[KSH] Split string into array

Hi,

Is there any way to convert a string into an array in KSH? In other words I want to split the string like this:

Code:
STRING="one two three four"
into an array of 4 values splitting on white space. The array should be similar to the one that would be created with the following command:

Code:
set -A STRING "one two three four"
Is there any way to do it in one instruction, not using a loop like this one:

Code:
   i=0
   for WORD in `echo ${STRING}`; do
        STRING2[$i]=$WORD
        ((i=i+1))
    done
  #2 (permalink)  
Old 08-31-2007
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,715
set -A array $(echo $STRING)
  #3 (permalink)  
Old 08-31-2007
Perderabo's Avatar
Perderabo Perderabo is offline Forum Staff  
Unix Daemon
  
 

Join Date: Aug 2001
Location: Ashburn, Virginia
Posts: 9,111
Well, I don't understand this thread. First of all:
Code:
$ set -A array "one two three four"
$ echo ${array[0]}
one two three four
$
so the command given in the OP results in an array with a single element. To replicate that behavior:
Code:
$ string="one two three four"
$ set -A array "$string"
$ echo ${array[0]}
one two three four
$
but if you want to split it into separate array elements do:
Code:
$ string="one two three four"
$ set -A array $string
$ echo ${array[0]}
one
$
if this is not working for you, you probably have IFS set wrong:
Code:
$ IFS=""
$ string="one two three four"
$ set -A array $string
$ echo ${array[0]}
one two three four
$
  #4 (permalink)  
Old 09-01-2007
piooooter piooooter is offline
Registered User
  
 

Join Date: Mar 2006
Posts: 24
You've been very helpful. Thank you very much!

Pit
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 07:05 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
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