Regex to get only the data cdab.aaaa.asd.cd
HI @shreyasamin64
you can try the below regex
| makeresults |eval new = "ab.aaaa.asd.cd" |rex field=new "(?<final>[\w+.].$)"|table _time,new ,final
if it helps karma points are appreciated/please accept the solution if it worked
| rex "(\w+\.){3}(?<cd>\w+)"