removeAllAlpha

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

描述

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

语法

<string>.removeAllAlpha()

(或)

removeAllAlpha(string)

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

removeAllAlpha 函数语法有以下参数。

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

示例

text="Non alpha characters include 0-9 and !£$%^&*

text.removeAllAlpha(); //返回 0-9 !£$%^&*

text="Non alpha characters include 0-9 and !£$%^&*"

removeAllAlpha(text); //返回 0-9 !£$%^&*