When you say "a list of", I assume that this list is in a field that is single-valued in each event. Is this correct? Assuming yes, and assuming a field name of fullname, you can do | eval full...
See more...
When you say "a list of", I assume that this list is in a field that is single-valued in each event. Is this correct? Assuming yes, and assuming a field name of fullname, you can do | eval fullname = trim(split(fullname, ","), " ")
| eval fullname = mvjoin(mvreverse(fullname), " ") Here is an emulation you can run and compare with real data | makeresults
| fields - _*
| eval fullname = "Smith, Suzy"
``` data emulation above ```
| eval fullname = trim(split(fullname, ","), " ")
| eval fullname = mvjoin(mvreverse(fullname), " ") Output is fullname Suzy Smith Hope this helps