bash:strings:get_a_substring
This is an old revision of the document!
Table of Contents
BASH - Get a SubString
Format
${var:start_position:length}
Return every character
var="abcdefgh" echo ${#var:0}
returns:
abcdefgh
NOTE: The colon specifies the start position.
Here, 0 means no limit, and returns everything.
Return a substring from a specific position
var="abcdefgh" echo ${#var:3}
returns:
defgh
NOTE: This 3 specifies to start from position 3.
Return a substring between a string
var="abcdefgh" echo ${#var:3:2}
returns:
de
NOTE: This starts at position 3; and then returns the next 2 characters.
var="abcdefgh" echo ${#var:0:2}
returns:
ab
NOTE: This starts at position 0; and then returns the next 2 characters.
Extracting Substrings Using Cut
cut can be used to ‘cut’ a portion of a string, aka the substring.
#!/bin/bash Str="My name is Peter" #subStr=${Str:0:6} subStr=$(echo $Str| cut -d ' ' -f 1-3) echo $subStr
bash/strings/get_a_substring.1610576191.txt.gz · Last modified: 2021/01/13 22:16 by peter