View on GitHub

JODA - JSON On Demand Analysis

Efficient data wrangling for semi-structured JSON documents

RTRIM - String

Trims all whitespace to the right of the string

Input parameters

Name Type Optional Description
str String False  

Output

String: str without whitespace to the right

Usage

RTRIM(<str>)

Examples

Example 1

Query

LOAD tmp
AS ('': RTRIM("  StRiNg  "))

Result

"  StRiNg"