You can specify a list of alternate subpatterns by separating them by |. The | separates subpatterns in the nearest enclosing cluster (or in the entire pattern string if there are no enclosing parens).
'("fi" "i")
"analyse an energising organisation"" pulsing with noisy organisms")"\1εz\2ε")"analyze an energizing organization pulsing with noisy organisms"
Note again that if you wish to use clustering merely to specify a list of alternate subpatterns but do not want the submatch, use (?: instead of (.
'("fo")
An important thing to note about alternation is that the leftmost matching alternate is picked regardless of its length. Thus, if one of the alternates is a prefix of a later alternate, the latter may not have a chance to match.
"call-with-current-continuation")'("call")
To allow the longer alternate to have a shot at matching, place it before the shorter one:
"call-with-current-continuation")'("call-with-current-continuation")
In any case, an overall match for the entire regexp is always preferred to an overall non-match. In the following, the longer alternate still wins, because its preferred shorter prefix fails to yield an overall match.
#rx"(?:call|call-with-current-continuation) constrained""call-with-current-continuation constrained")'("call-with-current-continuation constrained")