I've got a string Unnecessary:12357927251data
and I need to select all data after colon and numbers. I will do it using Regexp.
string.scan(/:\d+.+$/)
This will give me :12357927251data
, but can I select only needed information .+
(data
)?