For a line input "Abcd abcd1a 5ever qw3-fne superb5 1234 0"
I am trying to match words having letters and numbers, like "Abcd","abcd1a","5ever", "superb5","qw3","fne". But it should not match words having only numbers, like "1234", "0".
Words are separated by all the characters other than above alphanumerics.
I tried this regex (?![0-9])([A-Za-z0-9]+) which fails to match the word "5ever" but works properly for everything else.
How do I write this regex so that it also matches the word "5ever" in full?