mirror of
https://github.com/nushell/nushell
synced 2024-11-15 01:17:07 +00:00
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
554 B
554 B
str contains
Checks if string contains pattern
Usage
> str contains <pattern> ...args {flags}
Parameters
<pattern>
the pattern to find- ...args: optionally check if string contains pattern by column paths
Flags
- -h, --help: Display this help message
- -i, --insensitive: search is case insensitive
Examples
Check if string contains pattern
> echo 'my_library.rb' | str contains '.rb'
Check if string contains pattern case insensitive
> echo 'my_library.rb' | str contains -i '.RB'