Method: Polars::StringNameSpace#split_exact
- Defined in:
- lib/polars/string_name_space.rb
#split_exact(by, n, inclusive: false) ⇒ Series
Split the string by a substring using n splits.
Results in a struct of n+1 fields.
If it cannot make n splits, the remaining field elements will be null.
696 697 698 |
# File 'lib/polars/string_name_space.rb', line 696 def split_exact(by, n, inclusive: false) super end |