bash:slicing_strings
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
bash:slicing_strings [2019/12/12 20:56] – created peter | bash:slicing_strings [2021/01/11 11:45] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== BASH - Slicing Strings ====== | ||
- | |||
- | To cut portions of a string: | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | Str=" | ||
- | subStr=${Str: | ||
- | echo $subStr | ||
- | </ | ||
- | |||
- | This script should print out “My nam” as its output. | ||
- | |||
- | |||
- | <WRAP info> | ||
- | The parameter expansion takes the form ${VAR_NAME: | ||
- | |||
- | Here, S denotes starting position and L indicates the length. | ||
- | </ | ||
bash/slicing_strings.1576184186.txt.gz · Last modified: 2020/07/15 09:30 (external edit)