bash:strings:get_a_substring
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
bash:strings:get_a_substring [2021/01/11 11:49] – created peter | bash:strings:get_a_substring [2021/01/13 22:56] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== BASH - Get a SubString ====== | ====== BASH - Get a SubString ====== | ||
- | To cut portions of a string: | + | ===== Format ===== |
<code bash> | <code bash> | ||
- | #!/bin/bash | + | ${var: |
- | Str="My name is Peter" | + | </code> |
- | subStr=${Str:0:6} | + | |
- | echo $subStr | + | or |
+ | |||
+ | <code bash> | ||
+ | ${var: | ||
+ | </code> | ||
+ | |||
+ | or | ||
+ | |||
+ | < | ||
+ | ${var: -start_position -length} | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | <code bash> | ||
+ | ${var: -start_position: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Return every character ===== | ||
+ | |||
+ | <code bash> | ||
+ | var="abcdefgh" | ||
+ | |||
+ | echo ${#var:0} | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | abcdefgh | ||
</ | </ | ||
<WRAP info> | <WRAP info> | ||
- | This script should print out “My nam” as its output. | + | **NOTE: |
+ | </ | ||
- | The parameter expansion takes the form ${VAR_NAME: | + | ---- |
- | Here, S denotes starting | + | ===== Return a substring from a specific |
+ | |||
+ | <code bash> | ||
+ | var=" | ||
+ | |||
+ | echo ${#var:3} | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | defgh | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
</ | </ | ||
---- | ---- | ||
- | ===== Extracting Substrings Using Cut ===== | + | ===== Return a substring between a string |
- | **cut** can be used to ‘cut’ a portion of a string, aka the substring. | + | <code bash> |
+ | var=" | ||
+ | |||
+ | echo ${# | ||
+ | </ | ||
+ | |||
+ | returns: | ||
<code bash> | <code bash> | ||
- | #!/bin/bash | + | de |
- | Str=" | + | </code> |
- | # | + | |
- | subStr=$(echo $Str| cut -d ' ' | + | <WRAP info> |
- | echo $subStr | + | **NOTE: |
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Return a substring from beginning of a string ===== | ||
+ | |||
+ | <code bash> | ||
+ | var=" | ||
+ | |||
+ | echo ${#var:0:2} | ||
</ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | ab | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
---- | ---- | ||
- | In general to concatenate two variables you can just write them one after another: | + | ===== Return last few characters from back of a string ===== |
<code bash> | <code bash> | ||
- | a=' | + | var="abcdefgh" |
- | b=' | + | |
- | c="${a} ${b}" | + | echo ${#var: -4} |
- | echo "${c}" | + | |
- | > Hello World | + | |
</ | </ | ||
- | or | + | returns: |
<code bash> | <code bash> | ||
- | foo=" | + | efgh |
- | foo=" | + | |
- | echo " | + | |
- | > Hello World | + | |
</ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | There must be a SPACE before the minus sign! | ||
+ | |||
+ | Be aware that if the length after the colon is longer than the string, then nothing is returned. | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Return a substring from back of a string ===== | ||
+ | |||
+ | <code bash> | ||
+ | var=" | ||
+ | |||
+ | echo ${#var -1 -3} | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | efgh | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | There must be a SPACE before the minus signs. | ||
+ | |||
+ | Be aware that if the length of any position is longer than the string, then nothing is returned. | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Substrings with Concatenation ===== | ||
+ | |||
+ | |||
+ | <code bash> | ||
+ | var=" | ||
+ | echo ${var:0:(-1 -4)}XYZ | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | abcXYZ | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Extracting Substrings Using Cut ===== | ||
+ | |||
+ | **cut** can be used to ‘cut’ a portion of a string, aka the substring. | ||
+ | |||
+ | <code bash> | ||
+ | #!/bin/bash | ||
+ | Str=" | ||
+ | # | ||
+ | |||
+ | subStr=$(echo $Str| cut -d ' ' -f 1-3) | ||
+ | echo $subStr | ||
+ | </ | ||
+ | |||
+ | ---- | ||
bash/strings/get_a_substring.1610365769.txt.gz · Last modified: 2021/01/11 11:49 by peter