gtolower

Purpose

Convert the strings in multi-string valued global variable to lower case.

Syntax

gtolower(varname)

varname - type: str

Returns

Remarks

Old-style function slated for replacement.

Example

@CODE
G("strs") = "abc";
G("strs")[1] = "def";
gtolower("strs");
"output.txt" << G("strs") << "\n";

See Also

lookup, CODE Actions