I have the following file that I want to extract the last field from ;
Nov 11 07:20 Test_1.1.12345
Nov 11 08:20 Test_1.1.1.7544
Nov 12 07:00 Fred_455.11.123.42479
Nov 12 11:13 STUFF_1.55
ie. All I need is the 12345 or 7544 or 42479 or 55
How do I cut it when the field length varies and the record can have any amount of data before it ?
There will always be a . before the number but there may be more than one dot in the entire record.
Nov 11 07:20 Test_1.1.12345
Nov 11 08:20 Test_1.1.1.7544
Nov 12 07:00 Fred_455.11.123.42479
Nov 12 11:13 STUFF_1.55
ie. All I need is the 12345 or 7544 or 42479 or 55
How do I cut it when the field length varies and the record can have any amount of data before it ?
There will always be a . before the number but there may be more than one dot in the entire record.