I have a file with a list of names in strings like:
(John|Mary|Bob)(Anderson|Brooks|Cook)
I'm trying to use regular expressions to pull the data out in strings like:
John Anderson John Brooks John Cook Mary Anderson Mary Brooks Mary Cook Bob Anderson Bob Brooks Bob Cook
I'm fairly new at RegEx so any help would be aprreciated. Thanks