daft.functions.reverse#
reverse #
reverse(expr: Expression) -> Expression
Reverse a UTF-8 string.
Returns:
| Name | Type | Description |
|---|---|---|
Expression | Expression | a String expression which is |
Examples:
1 2 3 4 5 | |
╭────────╮
│ x │
│ --- │
│ String │
╞════════╡
│ oof │
├╌╌╌╌╌╌╌╌┤
│ rab │
├╌╌╌╌╌╌╌╌┤
│ zab │
╰────────╯
(Showing first 3 of 3 rows) Source code in daft/functions/str.py
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 | |