For iinstance I have a dataframe as below
import pandas as pd
df = pd.DataFrame({"col":['AM RLC, F C', 'AM/F C', 'DM','D C']})
|col
-------------------|
0 |"AM RLC, F C" |
1 |"AM/F C" |
2 |"DM" |
3 |"D C" |
My expected output is as following
|col
----|-----------------------|
0 |["AM", "RLC", "F", "C"]|
1 |["AM", "F", "C"] |
2 |["DM" ] |
3 |["D", "C"] |
",", "/" and "space" should be treated as delimiter,
The answers in this question do not answer my queries