"abs" function:

  • Can also be called as nas_abs

If the argument is numnber as string, return it's absolute value as string.

Examples:

  • running: ("abs" "100") will give: "1E+2"

  • running: ("abs" "-100") will give: "1E+2"

  • running: ("abs" "100e500") will give: "1E+502"

  • running: ("abs" 0) will return nothing

  • running: ("abs" "test") will return nothing