removeNonAlphaNumericCharactersForList

Modified on Fri, 18 Aug 2023

Description

Remove non-alphanumeric characters (excluding letters and digits) from each string in a list

Syntax

removeNonAlphaNumericCharactersForList(array)

Parameters

Input ParameterTypeDescription
arrayArrayString list to process

Return value

Type
Array<any

Sample

ExampleResultDescription
removeNonAlphaNumericCharactersForList(['Invoice Id. 1234', '123.45'])['InvoiceId1234', '12345']String list with only alphanumeric characters (0-9, a-z, A-Z)

To view all the List functions, click here.

See Also