I'm trying to capture the last digits in this line in a regex group:
The input:
9 Power_On_Hours 0x0032 099 099 000 Old_age Always - 54654
My pattern:
/Power_On_Hours.+Always\s.+([0-9]{1,5})/
I just can't seem to get it to capture "54654", it's returning undef :(