shell如何把字符串切割为数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell如何把字符串切割为数组相关的知识,希望对你有一定的参考价值。

参考技术A root@localhost:~/xly# sh 1 hello
abc
shell
haha
1 hello abc
2 shell
3 haha
root@localhost:~/xly# vim 1
#!/bin/bash
string="hello abc,shell,haha"
OLD_IFS="$IFS"
IFS=","
array=($string)
IFS="$OLD_IFS"
for var in $array[@]
do
echo $var
done

echo $string | awk 'split($0,arr,",");for(i in arr) print i,arr[i]'

用awk更加精准

以上是关于shell如何把字符串切割为数组的主要内容,如果未能解决你的问题,请参考以下文章

lua数组操作_简单切割

关于oracle 存储过程 如何切割一个字符串 转化为字符数组,然后遍历该数组: 类似ab,12;cd,55;k,7

关于SQLserver 存储过程 如何切割一个字符串 转化为数组

shell切割字符串成数组

c语言切割字符串存入数组?

切割截取字符串