Hi Team
I have the below input and I'm trying to remove the last digits with '-+numbers' and the separate the AIC + numbers and AVC + numbers to C + numbers. Also those that don't have a AVC/AIC/C will be blank
This is my input :
| Name |
| 189976 |
| STP AYU AIC1234-5678 |
| AIO-ARE AVC468-790 |
| AIC RQU C1678 |
| TYU AIE AIC1679 |
| AHU AIR HUO |
The Output should be ref
| Name | Ref |
| 189976 | |
| STP AYU AIC1234-5678 | C1234 |
| AIO-ARE AVC468-790 | C468 |
| AIC RQU C16 | C16 |
| TYU AIE AIC167989 | C167989 |
| AHU AIR HUO | |
Is this possible?