256

How to split the string when it contains pipe symbols | in it. I want to split them to be in array.

I tried

echo "12:23:11" | awk '{split($0,a,":"); print a[3] a[2] a[1]}'

Which works fine. If my string is like "12|23|11" then how do I split them into an array?

Braiam
  • 1
  • 11
  • 47
  • 78
Mohamed Saligh
  • 12,029
  • 19
  • 65
  • 84
  • 3
    Note that your output is concatenating the array elements, with no separator. If you instead wanted them to be separated with `OFS`, stick commas in between them, making `print` see them as separate arguments. – dubiousjim Apr 19 '12 at 12:57
  • Or you can use sed: `echo "12:23:11" | sed "s/.*://"` – slushy Jan 29 '19 at 15:04
  • @slushy: your command is not at all what the asker needs. your command ( `echo "12:23:11" | sed "s/.*://"`) delete everything until (and including) the last ":", keeping only the "11" ... it works to get the last number, but would need to be modified (in an difficult to read way) to get the 2nd number, etc. awk (and awk's split) is much more elegant and readable. – Olivier Dulac Dec 05 '19 at 09:13
  • if you need to split on a single character you can use `cut` – ccpizza Dec 11 '19 at 14:37

12 Answers12

384

Have you tried:

echo "12|23|11" | awk '{split($0,a,"|"); print a[3],a[2],a[1]}'
Chris Seymour
  • 83,387
  • 30
  • 160
  • 202
Calin Paul Alexandru
  • 4,512
  • 2
  • 19
  • 21
  • is not working for me :( is that because of the length of the string ? since, my string length is 4000. any ideas – Mohamed Saligh Nov 04 '11 at 13:16
  • 2
    @Mohamed Saligh, if you're on Solaris, you need to use */usr/xpg4/bin/awk*, given the string length. – Dimitre Radoulov Nov 04 '11 at 13:54
  • 6
    'is not working for me'. especially with colons between the echoed values and split set up to split on '|'??? Typo? Good luck to all. – shellter Nov 04 '11 at 23:17
  • 4
    Better with some syntax explanation. – Alston Aug 18 '15 at 11:42
  • 2
    This will not work in GNU awk, because third argument to `split` is regular expression, and `|` is special symbol, which needs to be escaped. Use `split($0, a, "\|")` – WhiteWind Apr 19 '17 at 04:03
  • @WhiteWind which version? it works without escaping for me on `GNU Awk 4.1.3` and using `"\|"` actually gives a warning... you'd need `"\\|"` – Sundeep Sep 30 '17 at 06:26
  • How do i assign this values to a variable and access it within the script ? – Jess Mar 25 '19 at 22:07
  • 3
    @WhiteWind: another way to "ensure" that `|` is seen as a char and not a special symbol is to put it between `[]` : ie, `split($0, a, "[|]")` # I like this better than '\|', in some cases, especially as some variant of regexp (perl vs grep vs .. others?) can have "|" interepreted literally and "\|" seen as regex separator, instead of the opposite... ymmv – Olivier Dulac Dec 05 '19 at 09:16
  • Awk is dynamite! – Mina Sep 12 '20 at 10:44
  • Can use a shorter variant: `echo "a : b : c" | awk -F":" '{print $1 $2 }'` or `echo "a | b | c" | awk -F"|" '{print $1 $2 }'` – Felix Aballi Oct 30 '20 at 21:04
  • it also supports multiple delimiter: `split($0, a, "[|,]")` <-- split by either `|` or `,` – Thamme Gowda Jul 20 '23 at 20:44
199

To split a string to an array in awk we use the function split():

awk '{split($0, array, ":")}'
#           \/  \___/  \_/
#           |     |     |
#       string    |     delimiter
#                 |
#               array to store the pieces

If no separator is given, it uses the FS, which defaults to the space:

$ awk '{split($0, array); print array[2]}' <<< "a:b c:d e"
c:d

We can give a separator, for example ::

$ awk '{split($0, array, ":"); print array[2]}' <<< "a:b c:d e"
b c

Which is equivalent to setting it through the FS:

$ awk -F: '{split($0, array); print array[2]}' <<< "a:b c:d e"
b c

In GNU Awk you can also provide the separator as a regexp:

$ awk '{split($0, array, ":*"); print array[2]}' <<< "a:::b c::d e
#note multiple :
b c

And even see what the delimiter was on every step by using its fourth parameter:

$ awk '{split($0, array, ":*", sep); print array[2]; print sep[1]}' <<< "a:::b c::d e"
b c
:::

Let's quote the man page of GNU awk:

split(string, array [, fieldsep [, seps ] ])

Divide string into pieces separated by fieldsep and store the pieces in array and the separator strings in the seps array. The first piece is stored in array[1], the second piece in array[2], and so forth. The string value of the third argument, fieldsep, is a regexp describing where to split string (much as FS can be a regexp describing where to split input records). If fieldsep is omitted, the value of FS is used. split() returns the number of elements created. seps is a gawk extension, with seps[i] being the separator string between array[i] and array[i+1]. If fieldsep is a single space, then any leading whitespace goes into seps[0] and any trailing whitespace goes into seps[n], where n is the return value of split() (i.e., the number of elements in array).

fedorqui
  • 275,237
  • 103
  • 548
  • 598
22

Please be more specific! What do you mean by "it doesn't work"? Post the exact output (or error message), your OS and awk version:

% awk -F\| '{
  for (i = 0; ++i <= NF;)
    print i, $i
  }' <<<'12|23|11'
1 12
2 23
3 11

Or, using split:

% awk '{
  n = split($0, t, "|")
  for (i = 0; ++i <= n;)
    print i, t[i]
  }' <<<'12|23|11'
1 12
2 23
3 11

Edit: on Solaris you'll need to use the POSIX awk (/usr/xpg4/bin/awk) in order to process 4000 fields correctly.

Dimitre Radoulov
  • 27,252
  • 4
  • 40
  • 48
8

I do not like the echo "..." | awk ... solution as it calls unnecessary fork and execsystem calls.

I prefer a Dimitre's solution with a little twist

awk -F\| '{print $3 $2 $1}' <<<'12|23|11'

Or a bit shorter version:

awk -F\| '$0=$3 $2 $1' <<<'12|23|11'

In this case the output record put together which is a true condition, so it gets printed.

In this specific case the stdin redirection can be spared with setting an internal variable:

awk -v T='12|23|11' 'BEGIN{split(T,a,"|");print a[3] a[2] a[1]}'

I used quite a while, but in this could be managed by internal string manipulation. In the first case the original string is split by internal terminator. In the second case it is assumed that the string always contains digit pairs separated by a one character separator.

T='12|23|11';echo -n ${T##*|};T=${T%|*};echo ${T#*|}${T%|*}
T='12|23|11';echo ${T:6}${T:3:2}${T:0:2}

The result in all cases is

112312
TrueY
  • 7,360
  • 1
  • 41
  • 46
  • 1
    I think the end result was supposed to be the awk array variable references, regardless of the print output example given. But you missed a really easy bash case to provide your end result. T='12:23:11';echo ${T//:} – Daniel Liston Sep 14 '18 at 00:17
  • @DanielListon You are right! Thanks! I did not know that the trailing / can be left in this `bash` expression... – TrueY Sep 17 '18 at 13:42
7

Actually awk has a feature called 'Input Field Separator Variable' link. This is how to use it. It's not really an array, but it uses the internal $ variables. For splitting a simple string it is easier.

echo "12|23|11" | awk 'BEGIN {FS="|";} { print $1, $2, $3 }'
Sven
  • 2,343
  • 1
  • 18
  • 29
6

I know this is kind of old question, but I thought maybe someone like my trick. Especially since this solution not limited to a specific number of items.

# Convert to an array
_ITEMS=($(echo "12|23|11" | tr '|' '\n'))

# Output array items
for _ITEM in "${_ITEMS[@]}"; do
  echo "Item: ${_ITEM}"
done

The output will be:

Item: 12
Item: 23
Item: 11
Qorbani
  • 5,825
  • 2
  • 39
  • 47
6

Joke? :)

How about echo "12|23|11" | awk '{split($0,a,"|"); print a[3] a[2] a[1]}'

This is my output:

p2> echo "12|23|11" | awk '{split($0,a,"|"); print a[3] a[2] a[1]}'
112312

so I guess it's working after all..

duedl0r
  • 9,289
  • 3
  • 30
  • 45
5
echo "12|23|11" | awk '{split($0,a,"|"); print a[3] a[2] a[1]}'

should work.

codaddict
  • 445,704
  • 82
  • 492
  • 529
4
echo "12|23|11" | awk '{split($0,a,"|"); print a[3] a[2] a[1]}'
Schildmeijer
  • 20,702
  • 12
  • 62
  • 79
2

code

awk -F"|" '{split($0,a); print a[1],a[2],a[3]}' <<< '12|23|11'

output

12 23 11
vcatafesta
  • 73
  • 5
  • 1
    Your answer could be improved by adding more information on what the code does and how it helps the OP. – Tyler2P Apr 24 '22 at 11:19
0

The challenge: parse and store split strings with spaces and insert them into variables.

Solution: best and simple choice for you would be convert the strings list into array and then parse it into variables with indexes. Here's an example how you can convert and access the array.

Example: parse disk space statistics on each line:

sudo df -k | awk 'NR>1' | while read -r line; do
   #convert into array:
   array=($line)

   #variables:
   filesystem="${array[0]}"
   size="${array[1]}"
   capacity="${array[4]}"
   mountpoint="${array[5]}"
   echo "filesystem:$filesystem|size:$size|capacity:$capacity|mountpoint:$mountpoint"
done

#output:
filesystem:/dev/dsk/c0t0d0s1|size:4000|usage:40%|mountpoint:/
filesystem:/dev/dsk/c0t0d0s2|size:5000|usage:50%|mountpoint:/usr
filesystem:/proc|size:0|usage:0%|mountpoint:/proc
filesystem:mnttab|size:0|usage:0%|mountpoint:/etc/mnttab
filesystem:fd|size:1000|usage:10%|mountpoint:/dev/fd
filesystem:swap|size:9000|usage:9%|mountpoint:/var/run
filesystem:swap|size:1500|usage:15%|mountpoint:/tmp
filesystem:/dev/dsk/c0t0d0s3|size:8000|usage:80%|mountpoint:/export
avivamg
  • 12,197
  • 3
  • 67
  • 61
0
awk -F'['|'] -v '{print $1"\t"$2"\t"$3}' file <<<'12|23|11'
jian
  • 4,119
  • 1
  • 17
  • 32