Skip to content
Legacy docs for Tenzir v5.x. For the latest Tenzir v6 series, visit docs.tenzir.com. Migrating from v5? Read the Tenzir v6 migration guide.

Checks if a string is in uppercase.

is_upper(x:string) -> bool

The is_upper function returns true if x is entirely in uppercase; otherwise, it returns false.

from {x: "HELLO".is_upper()}
{x: true}

Last updated: