Skip to content

Latest commit

 

History

History
71 lines (55 loc) · 1.47 KB

str_trim.md

File metadata and controls

71 lines (55 loc) · 1.47 KB
title categories version strings usage feature
str trim
strings
0.90.0
Trim whitespace or specific character.
Trim whitespace or specific character.
default

{{ $frontmatter.title }} for strings

{{ $frontmatter.strings }}

Signature

> str trim {flags} ...rest

Flags

  • --char, -c {string}: character to trim (default: whitespace)
  • --left, -l: trims characters only from the beginning of the string
  • --right, -r: trims characters only from the end of the string

Parameters

  • ...rest: For a data structure input, trim strings at the given cell paths.

Input/output types:

input output
list<string> list<string>
record record
string string
table table

Examples

Trim whitespace

> 'Nu shell ' | str trim
Nu shell

Trim a specific character (not the whitespace)

> '=== Nu shell ===' | str trim --char '='
 Nu shell

Trim whitespace from the beginning of string

> ' Nu shell ' | str trim --left
Nu shell

Trim whitespace from the end of string

> ' Nu shell ' | str trim --right
 Nu shell

Trim a specific character only from the end of the string

> '=== Nu shell ===' | str trim --right --char '='
=== Nu shell