str ends-with
for strings> str ends-with {flags} (string) ...rest
--ignore-case, -i
: search is case insensitivestring
: the string to match...rest
: For a data structure input, check strings at the given cell paths, and replace with resultinput | output |
---|---|
list<string> | list<bool> |
record | record |
string | bool |
table | table |
Checks if string ends with '.rb'
>'my_library.rb'|str ends-with'.rb'
true
Checks if strings end with '.txt'
> ['my_library.rb', 'README.txt'] |str ends-with'.txt'
╭───┬───────╮
│0│false│
│1│true│
╰───┴───────╯
Checks if string ends with '.RB', case-insensitive
>'my_library.rb'|str ends-with-i'.RB'
true
Copyright © 2019–2023 The Nushell Project DevelopersLicensed under the MIT License.
https://www.nushell.sh/commands/docs/str_ends-with.html