nushell/docs/commands/str-starts-with.md
JT bff81f24aa
Autogenerate missing docs (#3514)
* Autogenerate missing docs

* Update ansi.md

* Rename question mark command docs

* Delete empty?.md
2021-05-30 12:57:04 +12:00

22 lines
403 B
Markdown

# str starts-with
checks if string starts with pattern
## Usage
```shell
> str starts-with <pattern> ...args {flags}
```
## Parameters
* `<pattern>` the pattern to match
* ...args: optionally matches prefix of text by column paths
## Flags
* -h, --help: Display this help message
## Examples
Checks if string starts with 'my' pattern
```shell
> echo 'my_library.rb' | str starts-with 'my'
```