Skip to content

Numeric reduce¤

Strip all non-numeric characters from a string.

Examples¤

Notation: List of values are represented via square brackets. Example: [first, second] represents a list of two values “first” and “second”.


Example 1:

  • Parameters

    • keepPunctuation: false
  • Input values:

    1. [some1.2Value]
  • Returns: [12]


Example 2:

  • Parameters

    • keepPunctuation: true
  • Input values:

    1. [some1.2Value]
  • Returns: [1.2]

Parameter¤

Keep punctuation¤

No description

  • Datatype: boolean
  • Default Value: true

Comments