“Bash Split String на массив” Ответ

разделить строку и создать массив

my_array=($(echo $string | tr "," "\n"))
Prickly Pheasant

Как разделить строку в Bash

string="you got a friend in me"
IFS=' ' read -ra split <<< "$string"
echo "${split[*]}"
# Output: you got a friend in me
echo "${split[3]}"
# Output: friend
AttractivePenguin

Сплит Split Bash

IN="bla@some.com;john@home.com"
arrIN=(${IN//;/ })
Tremendous Enceladus

Bash Split String на массив

IFS=', ' read -r -a array <<< "$string"
Prickly Pheasant

Ответы похожие на “Bash Split String на массив”

Вопросы похожие на “Bash Split String на массив”

Больше похожих ответов на “Bash Split String на массив” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования