in reply to RegEx needed

split. As in
$_ = "0x4300004 Universe Collects\t0x4300021 1.2.13.44"; @data = split;
The effect is the same as
@data = /(\S+)/g;
Do note the tab in there, and the double space. It works for any other whitespace sequence.