gpt4 book ai didi

shell - Fish:遍历字符串

转载 作者:行者123 更新时间:2023-12-03 20:17:17 27 4
gpt4 key购买 nike

您将如何迭代 fish shell 中的字符串?

不幸的是,遍历字符串并不像遍历列表那样直接:

↪ for c in a b c
echo $c
end
a
b
c

↪ for c in abc
echo $c
end
abc

最佳答案

for fish 中的循环对列表进行操作。

for VARNAME in [VALUES...]; COMMANDS...; end

内置 string命令(自 v2.3.0 起)可用于将字符串拆分为字符列表。
↪ string split '' abc
a
b
c

输出是一个列表,因此数组操作将起作用。
↪ for c in (string split '' abc)
echo $c
end
a
b
c

使用索引迭代字符串的更复杂示例。
↪ set --local chars (string split '' abc)
for i in (seq (count $chars))
echo $i: $chars[$i]
end
1: a
2: b
3: c

关于shell - Fish:遍历字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49223562/

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