If your number is in A2, try this in a blank column:
=LEFT(A2,5)
which will return the values as text - if you want them as numbers, try
this:
=VALUE(LEFT(A2,5))
Copy the formula down for as many rows as you have data in column A.
Hope this helps.
Pete