Deprecate str.explode
#14605
Labels
A-dtype-string
Area: string data type
accepted
Ready for implementation
deprecation
Add a deprecation warning to outdated functionality
python
Related to Python Polars
rust
Related to Rust Polars
Milestone
Ref #12884 (comment)
We want to deprecate this method as it's very niche. It was included originally as it was easily implemented in a similar fashion to other explodes, but this is no longer true with the new string type.
First we should fix #14604. Then we can recommend users to replace their
.str.explode()
by.str.split("").explode()
.The text was updated successfully, but these errors were encountered: