Hi all,


Using Excel 2013.

Does VBA RegEx Engine have a split method?
I have not been able to find any documentation on it.

What would the pattern(s) be to split string like:
adsf@#$23.45
ghjkGHJ%&*45.8

So I end up with
adsf@#$ | 23.45
ghjkGHJ%&* | 45.8

Or will I need to pass the string to the RegEx function twice with 2 different patterns?

thx
w