removeAllAlphanumeric

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

描述

removeAllAlphanumeric 函数从给定字符串中删除所有字母数字字符并返回剩余字符串。

语法

<string>.removeAllAlphaNumeric()

(或)

removeAllAlphaNumeric(string)

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

removeAllAlphanumeric 函数语法有以下参数。

string - 必需。您想要从中删除字母数字字符的主字符串。 

示例

text="Non alpha numeric characters include !£$%^&*";

text.removeAllAlphaNumeric(); //返回 !£$%^&* 

text="Non alpha numeric characters include !£$%^&*"

removeAllAlphaNumeric(text); //返回 !£$%^&*