I have vast number of columns containing this kind of data:
DE-JP-202/2066/A2@qwier.cu/68
NL-LK-02206/2136/A1@ozmmfts.de/731
OM-PH-31303222/3671/Z1@jtqy.ml/524
I would like to extract string between '@' and '.' and between '.' and '/' into two separete colums .
Like :
txt 1 txt 2
qwier cu
ozmmft de
jtqy ml
Tried:
x = dane.str.extract(r'@(?P<txt1>\d)\.(?P<txt2>[ab\d])/')
But doesn't work