I've a list of Chemical reactions and I want to split these reactions using a delimiter so that I end up with the species involved in the reaction. Is there any way out of this? For example:
H2 + O2 = 2H2O
Na2 + Cl2 = NaCl
Ag + Cl2 = AgCl
I want to split the above reactions list in such a way that I end up with a list having the following [['H2', 'O2', '2H2O'],['Na2','Cl2','NaCl'],['Ag','Cl2','AgCl']]