Hi,
Been banging my head on this brick wall for a while so reaching out for some of expertise. Seems pretty straightforward and regex101 says my expression should work, but I am not getting any data returned in the new field.
Original data is:
18 dB, 16 dB, 12 dB, 12 dB, 12 dB, 13 dB, 4 dB, 8 dB, 9 dB, 9 dB 9 dB, 9 dB, 9 dB, 9 dB 9 dB 9 dB, 9 dB, 9 dB, 9 dB, 9 dB 7 dB, 9 dB
I'm trying to remove the space and the text dB after any number. So the results for the 4th event would read as 9, 9, 9, 9, 9 and the 5th event would be 7, 9
My search returns the events, but no values for the new field:
|rex field=Value "\ dB(?<MicGainText>)" |table Value MicGainText
If anyone could assist, it would be greatly appreciated. Thanks in advance
John
... View more