“split string dalam skrip shell” Kode Jawaban

Cara membagi string dalam 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 string sh

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

Bash split variabel oleh pembatas

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

split string menggunakan 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

Jawaban yang mirip dengan “split string dalam skrip shell”

Pertanyaan yang mirip dengan “split string dalam skrip shell”

Lebih banyak jawaban terkait untuk “split string dalam skrip shell” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya