查询到最新的1条

shell 字符串转数组

字符串转换为数组 test_words="abc def ghi" #字符串转数组,空格是分割符 array_test_words=(${test_words// / }) #打印数组的长度 echo ${#array_test_words[@]} #打印读出的内容 echo "-----打印出数组所有内容 -----" for word in ${array_test_words[@]};doecho ${word} done 继续阅读