作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个关联数组:
lettres['A']=0
…(from 'A' to 'Z')…
lettres['Z']=0
我的问题很简单:如何获取一个元素的值并递增它?我尝试了以下方法:
lettres[$char]=${lettres[$char]}++
但它失败了,因为结果是 «0++++++++»。我怎样才能轻松增加值(value)?
编辑:更多代码:
while (( i++ < ${#word} )); do
#$char current char
char=$(expr substr "$word" $i 1)
if [[ "${mot[@]}" =~ "${char} " || "${mot[${#mot[@]}-1]}" == "${char}" ]]; then
#char is currently in array $mot -> skipping
echo 'SKIPPING'
else
#Char is not in array $mot -> adding + incrementing lettres
((lettres[char]++))
echo ${lettres[$char]}
#Adding to $mot
mot[${#mot[@]}]=$char
fi
echo "<$char>"
done
最佳答案
使用 bash 版本 4 及更高版本,这会起作用:
$ declare -A lettres
$ char=B
$ ((lettres[$char]++))
$ echo "${lettres['A']}"
0
$ echo "${lettres['B']}"
1
(( ))
强制 arithmetic context ,您可以在其中递增数组元素的值。请注意,它也是 recommended to use declare -A
以保证与标准索引数组的最大向后兼容性。
关于arrays - 如何在 Bash 中递增关联数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26391578/
我是一名优秀的程序员,十分优秀!