I extracted three fields.
The data is \\VMMSNEWPALM2SER\Process(TIDC.Imports)\% Privileged Time, ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
I want to extract the VMMSNEWPALM2SER , Process(TIDC.Imports) and % Privileged Time
My rex is \\\\(?P<vm_h>\w+) , \w+\\\\(?P<v_fields>.*)\\\\ and ^[^\)\n]*\)\\(?P<vm_f>.*?),
But now, I can't use the v_fields to find the data, though I'm sure I've extracted it.
And, I can find the v_fields in the left fields sidebar.
why?
What should I do?
... View more