tabsdata.tableframe.expr.string.ExprStringNameSpace.reverse#
- ExprStringNameSpace.reverse() Expr [source]#
Reverse the string.
Example:
>>> import tabsdata as td >>> >>> tf: td.TableFrame ... >>> >>> tf.select(td.col("a"), td.col("a").str.reverse().alias("reverse")) >>> ┌──────┬─────────┐ │ a ┆ reverse │ │ --- ┆ --- │ │ str ┆ str │ ╞══════╪═════════╡ │ abc ┆ cba │ │ a ┆ a │ │ null ┆ null │ └──────┴─────────┘