Compatible answer
To this SO question, there is already a lot of different way to do this in bash.
But bash as many special features, so called bashism that work well, but that won't work in any other shell.
In particular, arrays, associative array, and pattern substitution are pure bashisms and may not work under other shells.
On my Debian GNU/Linux, there is a standard shell called dash, but I know many people who like to use ksh.
Finally, in very small situation, there is a special tool called busybox with his own shell interpreter (ash).
Requested string
The string sample in SO question is:
IN="bla@some.com;john@home.com"
As this could be usefull with whitespaces and as whitespaces could modify the result of the routine, I prefer to use this sample string:
IN="bla@some.com;john@home.com;Full Name <fulnam@other.org>"
Split string based on delimiter in bash
Under pure bash, we may use arrays and IFS:
var="bla@some.com;john@home.com;Full Name <fulnam@other.org>"
oIFS="$IFS"
IFS=";"
declare -a fields=($var)
IFS="$oIFS"
unset oIFS
set | grep ^fields
fields=([0]="bla@some.com" [1]="john@home.com" [2]="Full Name <fulnam@other.org>")
This is the quickiest way to do this because there is no forks and nor external ressource called.
From there, you could;
printf "> [%s]\n" "${fields[@]}"
> [bla@some.com]
> [john@home.com]
> [Full Name <fulnam@other.org>]
or
for x in "${fields[@]}";do
echo "> [$x]"
done
> [bla@some.com]
> [john@home.com]
> [Full Name <fulnam@other.org>]
or even (I like this shifting approach):
while [ "$fields" ] ;do
echo "> [$fields]"
fields=("${fields[@]:1}")
done
> [bla@some.com]
> [john@home.com]
> [Full Name <fulnam@other.org>]
Split string based on delimiter in shell
But if you would write something useable under many shells, you have to not use bashisms.
There is a syntax, used in many shells, for splitting a string accros first or last occurence of a substring:
${var#*SubStr} # will drop begin of string upto first occur of `SubStr`
${var##*SubStr} # will drop begin of string upto last occur of `SubStr`
${var%SubStr*} # will drop part of string from last occur of `SubStr` to the end
${var%%SubStr*} # will drop part of string from first occur of `SubStr` to the end
( The missing of this is the main reason of my answer publication ;)
This little sample script work well under bash, dash, ksh, busybox and was tested under Mac-OS's bash too:
var="bla@some.com;john@home.com;Full Name <fulnam@other.org>"
while [ "$var" ] ;do
iter=${var%%;*}
echo "> [$iter]"
[ "$var" = "$iter" ] && \
var='' || \
var="${var#*;}"
done
> [bla@some.com]
> [john@home.com]
> [Full Name <fulnam@other.org>]
Have fun!
local IFS=...where possible; (b) -1 forunset IFS, this doesn't exactly reset IFS to its default value, though I believe an unset IFS behaves the same as the default value of IFS ($' \t\n'), however it seems bad practice to be assuming blindly that your code will never be invoked with IFS set to a custom value; (c) another idea is to invoke a subshell:(IFS=$custom; ...)when the subshell exits IFS will return to whatever it was originally. – dubiousjim May 31 '12 at 5:21