48

我想知道以下内容;

  1. 为什么给定的非工作示例不起作用。
  2. 如果有任何其他比工作示例中给出的更清洁的方法。

非工作示例

> ids=(1 2 3 4);echo ${ids[*]// /|}
1 2 3 4
> ids=(1 2 3 4);echo ${${ids[*]}// /|}
-bash: ${${ids[*]}// /|}: bad substitution
> ids=(1 2 3 4);echo ${"${ids[*]}"// /|}
-bash: ${"${ids[*]}"// /|}: bad substitution

工作示例

> ids=(1 2 3 4);id="${ids[@]}";echo ${id// /|}
1|2|3|4
> ids=(1 2 3 4); lst=$( IFS='|'; echo "${ids[*]}" ); echo $lst
1|2|3|4

在上下文中,要在sed命令中用于进一步解析的分隔字符串。

4

4 回答 4

52

因为括号用于分隔数组,而不是字符串:

ids="1 2 3 4";echo ${ids// /|}
1|2|3|4

一些示例:填充$ids两个字符串: a bc d

ids=("a b" "c d")

echo ${ids[*]// /|}
a|b c|d

IFS='|';echo "${ids[*]}";IFS=$' \t\n'
a b|c d

...最后:

IFS='|';echo "${ids[*]// /|}";IFS=$' \t\n'
a|b|c|d

其中数组被组装,由 的第一个字符分隔,但在数组的每个元素$IFS中用空格替换。|

当你这样做时:

id="${ids[@]}"

您将字符串构建从通过空格合并数组的方式转移到 stringids类型的新变量。

注意:"${ids[@]}"给出一个空格分隔的字符串时,"${ids[*]}"(用星*号代替 at 符号)将呈现一个由 . 的@一个字符分隔的字符串。$IFS

什么man bash说:

man -Len -Pcol\ -b bash | sed -ne '/^ *IFS /{N;N;p;q}'
   IFS    The  Internal  Field  Separator  that  is used for word splitting
          after expansion and to split  lines  into  words  with  the  read
          builtin command.  The default value is ``<space><tab><newline>''.

$IFS

declare -p IFS
declare -- IFS=" 
"
printf "%q\n" "$IFS"
$' \t\n'

字面意思是 a space, atabulation(意思是或) a line-feed。所以,虽然第一个字符是一个空格。的使用*将与@.

但是

{
    IFS=: read -a array < <(echo root:x:0:0:root:/root:/bin/bash)
    
    echo 1 "${array[@]}"
    echo 2 "${array[*]}"
    OIFS="$IFS" IFS=:
    echo 3 "${array[@]}"
    echo 4 "${array[*]}"
    IFS="$OIFS"
}
1 root x 0 0 root /root /bin/bash
2 root x 0 0 root /root /bin/bash
3 root x 0 0 root /root /bin/bash
4 root:x:0:0:root:/root:/bin/bash

注意:该行将IFS=: read -a array < <(...)用作:分隔符,无需$IFS永久设置。这是因为输出行将#2空格作为分隔符。

于 2012-11-20T10:24:05.393 回答
22

您也可以使用printf,无需任何外部命令或操作 IFS:

ids=(1 2 3 4)                     # create array
printf -v ids_d '|%s' "${ids[@]}" # yields "|1|2|3|4"
ids_d=${ids_d:1}                  # remove the leading '|'
于 2018-03-08T07:13:37.317 回答
17

您的第一个问题已经在F. Hauri 的回答中得到解决。这是连接数组元素的规范方法:

ids=( 1 2 3 4 )
IFS=\| eval 'lst="${ids[*]}"'

有些人会大声喊出eval邪恶的声音,但由于单引号,这里非常安全。这只有优点:没有子shell,IFS没有全局修改,不会修剪尾随换行符,而且非常简单。

于 2015-10-28T10:57:00.070 回答
3

将参数数组连接成分隔字符串的实用函数:

#!/usr/bin/env bash

# Join arguments with delimiter
# @Params
# $1: The delimiter string
# ${@:2}: The arguments to join
# @Output
# >&1: The arguments separated by the delimiter string
array::join() {
  (($#)) || return 1 # At least delimiter required
  local -- delim="$1" str IFS=
  shift
  str="${*/#/$delim}" # Expand arguments with prefixed delimiter (Empty IFS)
  echo "${str:${#delim}}" # Echo without first delimiter
}

declare -a my_array=( 'Paris' 'Berlin' 'London' 'Brussel' 'Madrid' 'Oslo' )

array::join ', ' "${my_array[@]}"
array::join '*' {1..9} | bc # 1*2*3*4*5*6*7*8*9=362880 Factorial 9

declare -a null_array=()

array::join '== Ultimate separator of nothing ==' "${null_array[@]}"

输出:

Paris, Berlin, London, Brussel, Madrid, Oslo
362880

于 2019-08-17T12:12:06.280 回答