Solved
Remove separators from an integer
If I have a list of integers as inputs in an expression such as: 8.651.134;7.236.458;6.124.536 etc, how can I remove the thousand separator dots to leave them as 8561134;7236458;6124536?
If I have a list of integers as inputs in an expression such as: 8.651.134;7.236.458;6.124.536 etc, how can I remove the thousand separator dots to leave them as 8561134;7236458;6124536?
tointeger(
split(
substitute(
"8.651.134;7.236.458;6.124.536",
".",
""
),
";"
)
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.