I have a data frame containing
Drug name
コージネイトFSバイオセット注250 250国際単位
アドベイト注射用500 500単位
I want to extract the the Japanese drug names and volume to create two new columns,
Drug_clean Volume
コージネイト 250
アドベイト 500
In order to do this, I plan to identify the letter of F and specific character "注", but I don't know how to do that. Can you please tell me how can I achieve it?
Thank you.