gpt4 book ai didi

arrays - 将制表符分隔的字符串拆分为 bash 中的数组

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:28:19 25 4
gpt4 key购买 nike

line="\t\t\t1\t2\t\t3"

我的工作:

IFS=$'\t'  DIRS=($line);

我想得到的:

DIRS[0]=NULL; DIRS[1]=NULL; DIRS[2]=NULL; DIRS[3]=1;DIRS[4]=2;DIRS[5]=NULL;DIRS[6]=3;

我实际得到的:

DIRS[0]=1; DIRS[1]=2; DIRS[2]=3

那有可能得到我想要得到的东西吗?

最佳答案

Bash 在 IFS 中专门处理空格:

If IFS has a value other than the default, then sequences of the whitespace characters space and tab are ignored at the beginning and end of the word, as long as the whitespace character is in the value of IFS (an IFS whitespace character). Any character in IFS that is not IFS whitespace, along with any adjacent IFS whitespace characters, delimits a field. A sequence of IFS whitespace characters is also treated as a delimiter.

因此,使用非空白字符。 (顺便说一句,我使用 $'\t' 作为标签,在 man bash 中搜索 Quoting)

#!/bin/bash
line=$'\t\t\t1\t2\t\t3'

IFS=$':' DIRS=(${line//$'\t'/:}) # Replace tabs with colons.

for (( i=0 ; i<${#DIRS[@]} ; i++ )); do
echo "$i: [${DIRS[i]}]"
done

关于arrays - 将制表符分隔的字符串拆分为 bash 中的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27291158/

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