“string split no script de shell” Respostas de código

Como dividir uma corda em 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 sh string

#YOURSTRING="this_is_an_example"
#output:
#this
#is
#an
#example
for i in $(echo $YOURSTRING | tr "_" "\n")
do
	echo $i
done
Wrong Willet

Variável dividida Bash por delimitador

IFS='|' read -r -a arrayName <<< "$variable"
C0W

String Split usando Linux CMD

$ s='one_two_three_four_five'

$ A="$(cut -d'_' -f2 <<<"$s")"
$ echo "$A"
two

$ B="$(cut -d'_' -f4 <<<"$s")"
$ echo "$B"
four
Envious Emu

Respostas semelhantes a “string split no script de shell”

Perguntas semelhantes a “string split no script de shell”

Mais respostas relacionadas para “string split no script de shell” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código