toLowerCase

本节介绍 Zoho Creator 中的 toLowerCase 函数的语法和使用。

描述

toLowerCase 函数将指定字符串中的所有字母转换为小写字母。如果字符串中包含非字母字符,则它们不受此函数影响。返回小写的字符串。

语法

<string>.toLowerCase

(或)

lower(string)

//仅在脚本构建器的自由流程脚本模式下才支持此格式。

该函数语法有以下参数。

string - 必需。要转换为小写的字符串。

示例

Name="Create online database applications"

Name.toLowerCase("Create database applications with Zoho Creator")

//将返回“create database applications with zoho creator”

Name="Create online database applications"

lower(Name)

//将返回“create database applications with zoho creator”