nushell/crates/nu_plugin_polars
Matthias Meschede 53d30ee7ea
add polars str strip chars (with --end / --start options) (#15118)
# Description

This PR adds `polars str-strip-chars-end`

# User-Facing Changes

New function that can be used as follows:

```
~/Projects/nushell> [[text]; [hello!!!] [world!!!]] | polars into-df | polars select (polars col text | polars str-strip-chars-end "!") | polars collect
╭───┬───────╮
│ # │ text  │
├───┼───────┤
│ 0 │ hello │
│ 1 │ world │
╰───┴───────╯
```

# Tests + Formatting

tests ran locally.
I ran the formatter.

# After Submitting
<!-- If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.
-->
2025-02-25 15:37:52 -08:00
..
src add polars str strip chars (with --end / --start options) (#15118) 2025-02-25 15:37:52 -08:00
Cargo.toml move to polars bigidx (#15177) 2025-02-25 17:29:56 -06:00
LICENSE Move dataframes support to a plugin (#12220) 2024-04-09 19:31:43 -05:00