regex - should be simple

Tech-Archive recommends: Fix windows errors by optimizing your registry



I want to capture everything up to the _first_ semicolon, and
everything after. Can't get it to work. Tried

(.*);(.*)
(.*?);(.*)

and many variations.

Testing against the string "one;two;three"
should return a group "one" and subsequent group "two;three"

an expression that works would be much appreciated.

- Leo

.