Good morning,
I need to find the first instance of [0-9] in a string. I tested the following and it works:
moss ID, match("([0-9])") regex
However ID is often a long string and the data set is extremely large. Since all I need is _pos1 is there a more efficient way of doing this?
Thanks.
ID
0 0 1 2 Hello 2
2 hi 3 2
my name
33 12
there
I need to find the first instance of [0-9] in a string. I tested the following and it works:
moss ID, match("([0-9])") regex
However ID is often a long string and the data set is extremely large. Since all I need is _pos1 is there a more efficient way of doing this?
Thanks.
ID
0 0 1 2 Hello 2
2 hi 3 2
my name
33 12
there
Comment