I dette emnet har vi definert hvordan du deler en streng i bash shell-skripting.
I noen tilfeller må vi kanskje dele strengdataene for å utføre noen spesifikke oppgaver. De fleste programmeringsspråkene inneholder innebygd funksjon 'split' for å dele opp strengdata i flere deler. Bash inneholder imidlertid ikke en slik type innebygd funksjon. Men vi kan bruke skilletegn for å dele alle strengdata i bash-skripting. Skilletegn kan enten være et enkelt tegn eller en streng med flere tegn.
Sjekk ut metodene nedenfor for å forstå hvordan du deler streng i et bash-skall:
Del opp med $IFS-variabel
Følgende er trinnene for å dele en streng i bash ved å bruke $IFS:
- $IFS er en spesiell intern variabel som brukes til å dele en streng i ord. $IFS-variabelen kalles ' Intern feltseparator ' som bestemmer hvordan Bash gjenkjenner grenser. $IFS brukes til å tilordne det spesifikke skilletegnet [ IFS='' ] for å dele strengen. Det hvite rommet er en standardverdi på $IFS. Vi kan imidlertid også bruke verdier som ' ', ' ', '-' osv. som skilletegn.
- Etter å ha tildelt skilletegnet, kan en streng leses av to alternativer: '-r' og '-a'. dvs., les -ra ARR <<< '$str' .
Her brukes alternativet '-r' for å definere at omvendt skråstrek () er et tegn i stedet for escape-tegn. Alternativet '-a' brukes til å definere at ordene (atskilt med $IFS) er tilordnet den sekvensielle indeksen til matrisen som begynner på null. - Deretter bruker vi bash 'for' loop for å få tilgang til tokens som er delt inn i en array.
La oss forstå denne mekanismen ved hjelp av noen eksempler:
Eksempel 1: Bash Del streng etter mellomrom
I dette eksemplet deles en streng ved hjelp av et mellomromstegn.
Bash Script
#!/bin/bash #Example for bash split string by space read -p 'Enter any string separated by space: ' str #reading string value IFS='' #setting space as delimiter read -ra ADDR <<<'$str' #reading str as an array tokens separated by ifs for i in '${addr[@]}'; #accessing each element of do echo '$i' done < pre> <p> <strong>Output</strong> </p> <p>If we input a string 'We welcome you on Javatpoint', the output will look like this:</p> <img src="//techcodeview.com/img/bash-tutorial/11/bash-split-string.webp" alt="Bash Split String"> <h3>Example 2: Bash Split String by Symbol</h3> <p>In some cases, we may have a requirement to split a string by other delimiters such as a symbol or specific character. In this example, a string is split using a comma (,) symbol character as a delimiter.</p> <p> <strong>Bash Script</strong> </p> <pre> #!/bin/bash #Example for bash split string by Symbol (comma) read -p 'Enter Name, State and Age separated by a comma: ' entry #reading string value IFS=',' #setting comma as delimiter read -a strarr <<<'$entry' #reading str as an array tokens separated by ifs echo 'name : ${strarr[0]} ' 'state ${strarr[1]} 'age ${strarr[2]}' < pre> <p> <strong>Output</strong> </p> <img src="//techcodeview.com/img/bash-tutorial/11/bash-split-string-2.webp" alt="Bash Split String"> <h2>Split without $IFS variable</h2> <p>In bash, a string can also be divided without using $IFS variable. The 'readarray' command with -d option is used to split the string data. The -d option is applied to define the separator character in the command like $IFS. Moreover, the bash loop is used to print the string in split form.</p> <p>Let's understand this logic with the help of some example:</p> <h3>Example 1: Bash Split String by Symbol</h3> <p>This example defines how a string value can be split without using $IFS. As per the script, a text value should be entered with the colon (:) sign so that it can be split. Check out the bash script below:</p> <p> <strong>Bash Script</strong> </p> <pre> #!/bin/bash #Example for bash split string without $IFS read -p 'Enter any string separated by colon(:) ' str #reading string value readarray -d : -t strarr <<<'$str' #split a string based on the delimiter ':' printf ' ' #print each value of array with help loop for (( n="0;" < ${#strarr[*]}; n++ )) do echo '${strarr[n]}' done pre> <p> <strong>Output</strong> </p> <img src="//techcodeview.com/img/bash-tutorial/11/bash-split-string-3.webp" alt="Bash Split String"> <h3>Example 2: Bash Split String by another string</h3> <p>In this example, we have used idiomatic expressions where parameter expansion has completed.</p> <p> <strong>Bash Script</strong> </p> <pre> #!/bin/bash #Example for bash split string by another string str='WeLearnWelcomeLearnYouLearnOnLearnJavatpoint' delimiter=Learn s=$str$delimiter array=(); while [[ $s ]]; do array+=( '${s%%'$delimiter'*}' ); s=${s#*'$delimiter'}; done; declare -p array </pre> <p>In this bash script, we have used the following Parameter- Expansions:</p> <ul> <tr><td>${parameter%%word}</td> <br> It removes the longest matching suffix pattern. </tr><tr><td>${parameter#word}</td> <br> It removes the shortest matching prefix pattern. </tr></ul> <p> <strong>Output</strong> </p> <img src="//techcodeview.com/img/bash-tutorial/11/bash-split-string-4.webp" alt="Bash Split String"> <h3>Example 3: Bash Split String using Trim Command</h3> <p>In this example, we have used trim (tr) command to split a string. Instead of using the read command, the trim command is used to split a string on the delimiter.</p> <p> <strong>Bash Script</strong> </p> <pre> #!/bin/bash #Example to split a string using trim (tr) command my_str='We;welcome;you;on;javatpoint.' my_arr=($(echo $my_str | tr ';'' ')) for i in '${my_arr[@]}' do echo $i done </pre> <p> <strong>Output</strong> </p> <img src="//techcodeview.com/img/bash-tutorial/11/bash-split-string-5.webp" alt="Bash Split String"> <h4>Note: It should be noted that array elements are divided on 'space delimiter' if we apply a trim command to split a string. For example, elements like 'Windows OS' will be treated as two different words.</h4> <h2>Conclusion</h2> <p>In this topic, we demonstrated how to split a string in bash scripting with different types of scenarios with or without using delimiter.</p> <hr></'$str'></pre></'$entry'></pre></'$str'>
I dette bash-skriptet har vi brukt følgende parameter-utvidelser:
Den fjerner det lengste samsvarende suffiksmønsteret.
Den fjerner det korteste samsvarende prefiksmønsteret.
Produksjon
Eksempel 3: Bash Split String ved hjelp av Trim Command
I dette eksemplet har vi brukt trim (tr) kommando for å dele en streng. I stedet for å bruke lese-kommandoen, brukes trim-kommandoen til å dele en streng på skilletegnet.
Bash Script
#!/bin/bash #Example to split a string using trim (tr) command my_str='We;welcome;you;on;javatpoint.' my_arr=($(echo $my_str | tr ';'' ')) for i in '${my_arr[@]}' do echo $i done
Produksjon
Merk: Det bør bemerkes at array-elementer deles på 'mellomromsavgrenser' hvis vi bruker en trimkommando for å dele en streng. For eksempel vil elementer som 'Windows OS' bli behandlet som to forskjellige ord.
Konklusjon
I dette emnet demonstrerte vi hvordan du deler en streng i bash-skripting med forskjellige typer scenarier med eller uten bruk av skilletegn.
\'$str\'>\'$entry\'>'$str'>