mirror of
https://github.com/nushell/nushell
synced 2025-01-04 09:18:57 +00:00
8c0a2d3c15
* Finish updating * a couple improvements * Update renames * cleanup examples
23 lines
334 B
Markdown
23 lines
334 B
Markdown
---
|
|
title: dfr contains
|
|
layout: command
|
|
version: 0.59.0
|
|
---
|
|
|
|
Checks if a pattern is contained in a string
|
|
|
|
## Signature
|
|
|
|
```> dfr contains (pattern)```
|
|
|
|
## Parameters
|
|
|
|
- `pattern`: Regex pattern to be searched
|
|
|
|
## Examples
|
|
|
|
Returns boolean indicating if pattern was found
|
|
```shell
|
|
> [abc acb acb] | dfr to-df | dfr contains ab
|
|
```
|
|
|