How do I split a string based on a delimiter in Bash?

I have this string stored in a variable:

IN="bla@some.com;john@home.com"

Now I would like to split the strings by ';' delimiter so that I have

ADDR1="bla@some.com"
ADDR2="john@home.com"

I don't necessarily need the ADDR1 and ADDR2 variables. If they are elements of an array that's even better.

Edit: After suggestions from the answers below, I ended up with the following which is what I was after:

#!/usr/bin/env bash

IN="bla@some.com;john@home.com"

arr=$(echo $IN | tr ";" "\n")

for x in $arr
do
    echo "> [$x]"
done

output:

> [bla@some.com]
> [john@home.com]

Edit2: There was a solution involving setting Internal_field_separator (IFS) to ';'. I am not sure what happened with that answer, how do you reset IFS back to default?

Edit3: RE: IFS solution, I tried this and it works, I keep the old IFS and then restore it:

IN="bla@some.com;john@home.com"

OIFS=$IFS
IFS=';'
arr2=$IN
for x in $arr2
do
    echo "> [$x]"
done

IFS=$OIFS

BTW, when I tried

arr2=($IN) 

I only got the first string when printing it in loop, without brackets around $IN it works.

link|improve this question

2  
arr2=($IN) creates a real array. So you should iterate over it with for i in "${arr2[@]}"; do ... ; done instead, when using the arr2=($IN) syntax :) That's why you only got the first string with the other method (like for i in $arr2; do ...; done). Note that you can print out items of an array too. Say you want to print the second item (mail addy), you would do echo "${arr2[1]}" . index "@" stands for "expand each item in the array to a separate word". – Johannes Schaub - litb May 28 '09 at 3:22
3  
So "${arr2[@]}" with arr2 containing mails a@b.com and c@d.com, expands to "a@b.com" "c@d.com" :) Note that you can then also restore IFS already before the for-loop starts (when using this array method). now, since "for x in $arr2" only works because IFS is still ";" (the string is seen by "for" as separate words, since IFS split them at that time), currently you have to have IFS set to ";" throughout the whole loop, which may cause subtle problems when you don't think of it :) I found bash has some evil pitfalls. Maybe we should start making up a "bash pitfalls" question on SO? :) – Johannes Schaub - litb May 28 '09 at 3:26
@JohannesSchaub-litb +1 for the "Bash pitfalls" question – jmendeth Mar 16 at 18:44
1  
With regards to your "Edit2": You can simply "unset IFS" and it will return to the default state. There's no need to save and restore it explicitly unless you have some reason to expect that it's already been set to a non-default value. Moreover, if you're doing this inside a function (and, if you aren't, why not?), you can set IFS as a local variable and it will return to its previous value once you exit the function. – Brooks Moses May 1 at 1:26
feedback

10 Answers

up vote 63 down vote accepted

You can set the internal field separator (IFS) variable, and then let it parse into an array. When this happens in a command, then the assignment to IFS only takes place to that single command's environment (to read ). It then parses the input according to the IFS variable value into an array, which we can then iterate over.

IFS=';' read -ra ADDR <<< "$IN"
for i in "${ADDR[@]}"; do
    # process "$i"
done

It will parse one line of items separated by ;, pushing it into an array. Stuff for processing whole of $IN, each time one line of input separated by ;:

 while IFS=';' read -ra ADDR; do
      for i in "${ADDR[@]}"; do
          # process "$i"
      done
 done <<< "$IN"
link|improve this answer
This is probably the best way. How long will IFS persist in it's current value, can it mess up my code by being set when it shouldn't be, and how can I reset it when I'm done with it? – Chris Lutz May 28 '09 at 2:25
now after the fix applied, only within the duration of the read command :) – Johannes Schaub - litb May 28 '09 at 3:04
I knew there was a way with arrays, just couldn't remember what it was. I like setting the IFS but am not sure with the redirect from $IN and go through read just to populate array. Isn't just restoring IFS easier? Anyway +1 fro IFS suggestion, thanks. – stefanB May 28 '09 at 3:11
I didn't like this saved="$IFS"; IFS=';'; ADDR=($IN); IFS="$saved" mess. :) – Johannes Schaub - litb May 28 '09 at 3:14
4  
You can read everything at once without using a while loop: read -r -d '' -a addr <<< "$in" # The -d '' is key here, it tells read not to stop at the first newline (which is the default -d) but to continue until EOF or a NULL byte (which only occur in binary data). – lhunath May 28 '09 at 6:14
show 3 more comments
feedback

If you don't mind processing them immediately, I like to do this:

for i in $(echo $IN | tr ";" "\n")
do
  # process
done

You could use this kind of loop to initialize an array, but there's probably an easier way to do it. Hope this helps, though.

link|improve this answer
tried using IFS=';' ADDR=($IN) , but i'm not sure how IFS behave afterwards so i removed my answer :( giving u +1 thou since i like it – Johannes Schaub - litb May 28 '09 at 2:32
You should have kept the IFS answer. It taught me something I didn't know, and it definitely made an array, whereas this just makes a cheap substitute. – Chris Lutz May 28 '09 at 2:42
8  
I would listen to you closer, Ihunath, and understand that you're right, if you weren't being as much of a jerk about it. While this is certainly not perfect (and I know that - I've seen wordsplitting before), if you know you're working with a list of semicolon-separated email addresses, good-enough is often better than technically correct. I upvoted the IFS answer (and even recommended that it be undeleted) because it's a better answer, but for the OP's problem this was good enough. There's a reason for the phrase "good enough." – Chris Lutz May 28 '09 at 13:54
1  
You could change it to echo "$IN" | tr ';' '\n' | while read -r ADDY; do # process "$ADDY"; done to make him lucky, i think :) Note that this will fork, and you can't change outer variables from within the loop (that's why i used the <<< "$IN" syntax) then – Johannes Schaub - litb May 28 '09 at 17:00
6  
@Chris: People being satisfied with "good enough" is the reason why 99.9% of all bash scripts in existance are a danger to anyone using them because of race conditions, bugs and security issues. "Good enough" is not good enough; and definitely not recommended (and any advice given is a recommendation to the one asking). – lhunath May 28 '09 at 17:09
show 2 more comments
feedback

Taken from Bash shell script split array:

IN="bla@some.com;john@home.com"
arrIN=(${IN//;/ })
link|improve this answer
2  
I just want to add: this is the simplest of all, you can access array elements with ${arrIN[1]} (starting from zeros of course) – Oz123 Mar 21 '11 at 18:50
simplest solution but it do depends on the IFS. – Amit S Aug 8 '11 at 1:31
This is equally concise as palindrom's. – Juaco Nov 3 '11 at 22:29
Does anyone know the name of the dollar-brace construct used here ${var} ? I'm trying to google it to find other useful modifier suffixes but can't find the correct technical term of this bash feature! – KomodoDave Jan 5 at 12:47
5  
Found it: the technique of modifying a variable within a ${} is known as 'parameter expansion'. – KomodoDave Jan 5 at 15:13
feedback

How about this approach:

IN="bla@some.com;john@home.com" 
set -- "$IN" 
IFS=";"; declare -a Array=($*) 
echo "${Array[@]}" 
echo "${Array[0]}" 
echo "${Array[1]}" 

Source

link|improve this answer
+1, nice, I like that it does not use any external tools – stefanB Jul 7 '09 at 4:22
+1 ... but I wouldn't name the variable "Array" ... pet peev I guess. Good solution. – Yzmir Ramirez Sep 5 '11 at 1:06
3  
+1 ... but the "set" and declare -a are unnecessary. You could as well have used just IFS";" && Array=($IN) – Juaco Nov 3 '11 at 22:33
feedback
echo "bla@some.com;john@home.com" | sed -e 's/;/\n/g'
bla@some.com
john@home.com
link|improve this answer
I think this is good as well, I took the first suggestion using tr – stefanB May 28 '09 at 2:21
feedback

A different take on Darron's answer, this is how I do it:

IN="bla@some.com;john@home.com"
read ADDR1 ADDR2 <<<$(IFS=";"; echo $IN)
link|improve this answer
This doesn't work. – ColinM Sep 10 '11 at 0:31
I think it does! Run the commands above and then "echo $ADDR1 ... $ADDR2" and i get "bla@some.com ... john@home.com" output – nickjb Oct 6 '11 at 15:33
This worked REALLY well for me... I used it to itterate over an array of strings which contained comma separated DB,SERVER,PORT data to use mysqldump. – Nick Oct 28 '11 at 14:36
feedback

You may also:

dirList=(
some
list
of
elements
)

for i in ${dirList[@]}; do
...
done
link|improve this answer
feedback

How about this one liner, if you're not using arrays:

IFS=';' read ADDR1 ADDR2 <<<$IN
link|improve this answer
feedback

There are two simple methods:

cat "text1;text2;text3" | tr " " "\n"

and

cat "text1;text2;text3" | sed -e 's/ /\n/g'
link|improve this answer
feedback

This is the simplest way to do it.

spo='one;two;three'
OIFS=$IFS
IFS=';'
spo_array=($spo)
IFS=$OIFS
echo ${spo_array[*]}
link|improve this answer
That's not valid Bash. – l0b0 Oct 13 '11 at 9:31
That works what is not valid? Was it the typo? – James Andino Feb 28 at 8:19
$var= is not Bash syntax to set a variable; it should be var= – l0b0 Feb 28 at 8:47
A common typo, fixed it. I had thought you voted me down for it but I see you comment was from ages ago sorry. This does actually work though. I think it might be to simple though for bash scripters =) – James Andino Feb 28 at 8:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.