Syntax

Platform.Function.Lowercase(value)
1 argument

Parameters

Name Type Required Description
value string Yes String to convert to lowercase

Examples

var lower = Platform.Function.Lowercase("HELLO WORLD");
Write(lower); // "hello world"

// Normalize email for comparison/storage
var email = Platform.Function.Lowercase(Platform.Function.Trim(emailInput));