hi,
If you initially have the 001 stored as a unique string, you could just reuse that, but since I don't think that is your problem, why don't you determine how many characters come after the dash in the string and then use string subset to get the substring. You said the part number is always 8 digits, so you could use an offset of 8 (to get you to the 9th character). In the example you gave of 12345678-001, you could determine the length of the total string and subtract the length of the 8 digits + 1 for the dash to find the length of the 001, and then take a substring of that length starting at offset 8. Then you would have a string containing 001, is that what you wanted?
Hope that helps,
Jeff
Using Labview 7 Express