I'm retrieveing a string from a emailbody, this string contains text, tabs and numeric values.

With that:
Cells(p, 6).Value = Temp(i1)
retuns: 'ID_123456_YYYYMMDD.180624133119335.csv 120 0 0 5 0 0"
but in my Excel sheet it looks like this: 'ID_123456_YYYYMMDD.180624133119335.csv12005000"

Therefore i replace the tabs with '|', with that:
Cells(p, 5).Value = Replace(Temp(i1), vbTab, "|")
returns: ID_123456_YYYYMMDD.180624133119335.csv|120|0|0|5|0|0|

Now I would like to 'use' the numeric value 120 and 5(these are always in the 2nd and 5th place of the string

What is the best way to get these values out of my string?

Thanks in Advance

ABBOV