gpt4 book ai didi

arrays - 如何在 Bash 中对数组进行切片

转载 作者:行者123 更新时间:2023-11-29 08:37:54 38 4
gpt4 key购买 nike

查看 bash(1) 手册页中的“数组”部分,我没有找到对数组进行切片的方法。

所以我想出了这个过于复杂的函数:

#!/bin/bash

# @brief: slice a bash array
# @arg1: output-name
# @arg2: input-name
# @args: seq args
# ----------------------------------------------
function slice() {
local output=$1
local input=$2
shift 2
local indexes=$(seq $*)

local -i i
local tmp=$(for i in $indexes
do echo "$(eval echo \"\${$input[$i]}\")"
done)

local IFS=$'\n'
eval $output="( \$tmp )"
}

这样使用:

$ A=( foo bar "a  b c" 42 )
$ slice B A 1 2
$ echo "${B[0]}" # bar
$ echo "${B[1]}" # a b c

有更好的方法吗?

最佳答案

参见 Parameter Expansion Bash man 页面中的部分。 A[@] 返回数组的内容,:1:2 取长度为 2 的切片,从索引 1 开始。

A=( foo bar "a  b c" 42 )
B=("${A[@]:1:2}")
C=("${A[@]:1}") # slice to the end of the array
echo "${B[@]}" # bar a b c
echo "${B[1]}" # a b c
echo "${C[@]}" # bar a b c 42
echo "${C[@]: -2:2}" # a b c 42 # The space before the - is necesssary

请注意,a b c 是一个数组元素(并且它包含一个额外的空格)这一事实得到保留。

关于arrays - 如何在 Bash 中对数组进行切片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1335815/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com