Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Sorry for my English
I have below table and I want to split only numbers to another coloumn with scprit.
How can I make it
Thanks
| NameID |
|---|
| Ali(1239) |
| Tom(4343) |
| John(95845) |
load num(Textbetween(NameID,'(',')'))
load num(Textbetween(NameID,'(',')'))
or if you will always not have numbers outside of parenthesis, then you can also try this
KeepChar(NameID, '0123456789')
Try like this
num(keepChar(NameID,'0123456789')) as new_column
Thank you so much