I'm working on an application which will calculate molecular weight and I need to separate a string into the different molecules. I've been using a regex to do this but I haven't quite gotten it to work. I need the regex to match on patterns like H2OCl4 and Na2H2O where it would break it up into matches like:
- H2
- O
- Cl4
- Na2
- H2
- O
The regex i've been working on is this:
([A-Z]\d*|[A-Z]*[a-z]\d*)
It's really close but it currently breaks the matches into this:
- H2
- O
- C
- l4
I need the Cl4 to be considered one match. Can anyone help me with the last part i'm missing in this. I'm pretty new to regular expressions. Thanks.