mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
801 B
801 B
str substring
substrings text
Usage
> str substring <range> ...args {flags}
Parameters
<range>
the indexes to substring [start end]- ...args: optionally substring text by column paths
Flags
- -h, --help: Display this help message
Examples
Get a substring from the text
> echo 'good nushell' | str substring [5 12]
Alternatively, you can use the form
> echo 'good nushell' | str substring '5,12'
Drop the last n
characters from the string
> echo 'good nushell' | str substring ',-5'
Get the remaining characters from a starting index
> echo 'good nushell' | str substring '5,'
Get the characters from the beginning until ending index
> echo 'good nushell' | str substring ',7'