I need to separate data into multiple columns with columns containing only letters and numbers. Unfortunately the original data doesn't have the same character count for the letters and numbers except the first character is always a letter. I have the below data in a single column.
Col 1
P000000ALG
P0000BOOMV
P00000CORP
P0000HRNMT
P00000OGHQ
P000000DEF
I need to create three columns with each column containing only letters or numbers
Col 1 Col 2 Col 3
P 000000 ALG
P 0000 BOOMV
P 00000 CORP
P 0000 HRNMT
P 00000 OGHQ
P 000000 DEF
I think I can use the REGEX tool but not sure how to specific letters versus numbers. Any help is greatly appreciated.