Hi
input:
| data |
| 456 //SG201AB TGHFG01 |
| ABCF //345-ASDTG |
| 001 //123123 |
| ABC//5690AB 90111 |
| RRR //5089--ASD JKLP |
output should should start from // till the next space
i have tried using this formula (\/\/\w+?)(?=\s), it is not giving expected results
| Expected Output |
| //SG201AB |
| //345-ASDTG |
| //123123 |
| //5690AB |
| //5089--ASD |
#regex