View on GitHub

JODA - JSON On Demand Analysis

Efficient data wrangling for semi-structured JSON documents

LTRIM - String

Trims all whitespace to the left of the string

Input parameters

Name Type Optional Description
str String False  

Output

String: str without whitespace to the left

Usage

LTRIM(<str>)

Examples

Example 1

Query

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

Result

"StRiNg  "