Example:
Load * inline [
InputText
rHode iSland
washingTon d.C.
new york
];
结果
加载数据并打开工作表。创建新表并将该字段添加为维度:
InputText
创建以下计算维度:
=Lower(InputText) 将 InputText 字段中的所有字符转换为小写。
结果表
InputText
Lower(InputText)
new york
new york
rHode iSland
rhode island
washingTon d.C.
washington d.c.
Lower 函数的输出将所有值转换为小写。
以下代码显示了如何在加载脚本中使用该函数。
Load
String,
Lower(String)
Inline
[String
rHode iSland
washingTon d.C.
new york];
结果表
String
Lower(String)
rHode iSland
rhode island
washingTon d.C.
washington d.c.
new york
new york
示例 - Lower 场景
概述
客户数据集包含的电子邮件地址具有域的混合大小写字符。公司希望将这些地址标准化,使其全部小写。
打开数据加载编辑器,并将下面的加载脚本添加到新选项卡。
加载脚本包含:
加载到名为 Example 的数据表中的数据集。
数据表中存在以下字段:
CustomerID
EmailAddress
Inquiry
加载脚本
Example:
Load * inline [
CustomerID, EmailAddress, Inquiry
1001,john.doe@Gmail.com, Inquiry about product return
1002,mary.jane@yahoo.com, Inquiry about order status
1003,a.smith@GMAIL.COM, Inquiry about shipping details
1004,lisa.black@outlook.com, General product inquiry
1005,james.wong@Yahoo.COM, Question about pricing
];