I am working with the following column string in a dataframe
s <- "[08/26/2021 06:58:12 260] - MacId: 40_E3_D6_CA_56_5C RSSI: -92"
I would like to split that somehow into the following columns
- df$Datetime = 08/26/2021 06:58:12 260
- df$MacId = 40_E3_D6_CA_56_5C
- df$RSSI = -92
Is there a function which can do so?