string.dropNonAlphas

Syntax string.dropNonAlphas (string)

Params string is a string from which you want to remove all non-alphanumeric characters.

Action Removes all non-alphanumeric characters from the string.

Returns The resulting string.

Examples string.dropNonAlphas ("1, 2, 3... This is a string with some illegal characters: / $ & %")

   » "123Thisisastringwithsomeillegalcharacters"

Notes This verb is implemented as a script.

This verb can be useful for creating filenames.

Discuss