bash:strings:get_a_substring
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:strings:get_a_substring [2021/01/13 22:16] – 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 ====== | ||
- | |||
- | ---- | ||
===== Format ===== | ===== Format ===== | ||
Line 7: | Line 5: | ||
<code bash> | <code bash> | ||
${var: | ${var: | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | <code bash> | ||
+ | ${var: | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | <code bash> | ||
+ | ${var: -start_position -length} | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | <code bash> | ||
+ | ${var: -start_position: | ||
</ | </ | ||
Line 26: | Line 42: | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE: |
- | + | ||
- | Here, 0 means no limit, | + | |
</ | </ | ||
Line 72: | Line 86: | ||
---- | ---- | ||
+ | |||
+ | ===== Return a substring from beginning of a string ===== | ||
<code bash> | <code bash> | ||
Line 88: | Line 104: | ||
**NOTE: | **NOTE: | ||
</ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Return last few characters from back of a string ===== | ||
+ | |||
+ | <code bash> | ||
+ | var=" | ||
+ | |||
+ | echo ${#var: -4} | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | efgh | ||
+ | </ | ||
+ | |||
+ | <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 | ||
+ | </ | ||
---- | ---- |
bash/strings/get_a_substring.1610576191.txt.gz · Last modified: 2021/01/13 22:16 by peter