My input value is something like:
Value:123 with subvalues:[134,135,136]
I just want to pull all of the numbers from this and keep them comma-delimited if they are seperated by at least one non-digit character. I'm using this right now:
regexp_replace(message, '[^[:digit:]]')
This pulls the numbers, but obviously replacing even the spaces between those numbers with nothing. How can I get the result of:
123,134,135,136