“Split String w Shell” Kod odpowiedzi

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

Split String w Shell

#!/usr/bin/env bash

# There are different method of splitting a string.
# Two of those methods are shown below

# a sample string delimeted by ";"
IN="FirstName=John; LastName=Doe; [email protected]"

# First method:
# splits the string on ';' and puts them into an array
person=$(echo $IN | tr ";" "\n")

# you can loop through the array
for info in $person
do
    echo "> [$info]"
done



# Second method:
echo "$IN" | cut -d ";" -f 1  # returns the first part
echo "$IN" | cut -d ";" -f 2  # returns the second part

#and so on.

Mckynde

Zmienna podzielona przez rozdzielacz przez ograniczenie

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

podzielony ciąg za pomocą 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

Odpowiedzi podobne do “Split String w Shell”

Pytania podobne do “Split String w Shell”

Więcej pokrewnych odpowiedzi na “Split String w Shell” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu