Method: Polars::StringExpr#len_chars
- Defined in:
- lib/polars/string_expr.rb
permalink #len_chars ⇒ Expr Also known as: n_chars
Note:
If you know that you are working with ASCII text, lengths
will be
equivalent, and faster (returns length in terms of the number of bytes).
Get length of the strings as :u32
(as number of chars).
318 319 320 |
# File 'lib/polars/string_expr.rb', line 318 def len_chars Utils.wrap_expr(_rbexpr.str_len_chars) end |