I have a list like below:
a = ['e8:04:62:23:57:d0\t2462\t-55\t[WPA2-PSK-CCMP][ESS]\tTest', '00:1b:2f:48:8b:f2\t2462\t-57\t[WPA2-PSK-CCMP-preauth][ESS]\tT_test', 'e8:04:62:23:4e:70\t2437\t-61\t[WPA2-PSK-CCMP][ESS]\tT_guest', 'e8:04:62:23:57:d1\t2462\t-53\t[ESS]\t', 'e8:04:62:23:4e:71\t2437\t-56\t[ESS]\t']
I want to sort the list based on the numbers after the third tab of each element, so in this case -55, -57, -61, -53 should change list order to -53, -55, -57, -61. Any way I have tried seems very convoluted (making a list of lists and so on). Should I be using a regex/pattern to simplify this?