removeNonNumericCharactersForList
Modified on Fri, 18 Aug 2023
Description
Remove non-numeric characters (excluding digits) from each string in a list
Syntax
removeNonNumericCharactersForList(array)
Parameters
| Input Parameter | Type | Description |
|---|---|---|
| array | Array | String list to process |
Return value
| Type |
|---|
| Array<any> |
Sample
| Example | Result | Description |
|---|---|---|
| removeNonNumericCharactersForList(['Invoice Id. 1234', '123.45']) | ['1234', '12345'] | Remove all non-numeric characters for each string in a list |
To view all the List functions, click here.
See Also
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article