I have a table in BigQuery with a variable with strings of text like this:
row path
1 /998777/kkjs/lksjaflkjsdf/sdfñklñ{sdf
2 /ñljasdfkgbsdf/5854654/lsjflkjsdf/asdfasdfsdf
3 /11544/sdfsdf/asdfsdfasdfdsf/sssfdsfdsdf
How can I query this table to extract the numbers for the variable so I get a new variable with:
row path2
1 998777
2 5854654
3 11544
Thx!