“String String en shell script” Código de respuesta

Cómo dividir una cadena en 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

variable dividida de bash por delimitador

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

Cadena dividida 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

Respuestas similares a “String String en shell script”

Preguntas similares a “String String en shell script”

Más respuestas relacionadas con “String String en shell script” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código