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:46] – peter | bash:strings:get_a_substring [2021/01/13 22:56] (current) – peter | ||
---|---|---|---|
Line 5: | 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 24: | Line 42: | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE: |
- | + | ||
- | At starting position | + | |
</ | </ | ||
Line 137: | Line 153: | ||
Be aware that if the length of any position is longer than the string, then nothing is returned. | 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.1610577996.txt.gz · Last modified: 2021/01/13 22:46 by peter