Reverse / String Layer
Reverse the character order in strings. Similar to Python's str[::-1] or Rust's chars().rev(). Reverses UTF-8 characters, not bytes. Useful for:
- Text analysis (palindrome detection)
- Data transformation requirements
- Pattern matching on reversed text
- Creating encoded identifiers
Table
0
0
Table
Select
columnThe string column to reverse. Examples:
- hello -> olleh
- 12345 -> 54321
- A man -> nam A
Handles Unicode characters correctly.
AsColumn
nameName for the new column. If not provided, the system generates a unique name. If AsColumn
matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.