in reply to reuse of split variable?

My Regexp knowlege is yucks, but i am wondering if you really need to do this three times or if a single split with a clever regexp does the job.
If I get it right, something like
@fields = split /\s|\(|,/;
would work if , and ( are only once in your string.

Cheers,
PerlingTheUK