in reply to Re: export all symbols
in thread export all symbols

That works excellently, especially since all of the variables I want to export start with the prefix "$RGX":
our @EXPORT = do { no strict 'refs'; map { '$' . $_ } grep { m/^RGX/ } keys %{ 'MyRegex::' }; };
Thanks for the help!