I have this string in Java:
String str = "-High Upload Observed|High| eventId=285475664495 MMTT type=2 mrt=1482650158658 in=104858769 out=104858769 sessionId=0 generatorID=3+ACVIFkBABCAA951mZ0UyA\=\= modelConfidence=0 severity=0";
From the above string I need output be like
eventId=285475664495 MMTT
type=2
mrt=1482650158658
in=104858769
out=104858769
sessionId=0
generatorID=3+ACVIFkBABCAA951mZ0UyA\=\=
modelConfidence=0
severity=0
Split the string into array by
|
, get the third element and remove everything after last space;EDIT:
Based on what OP given in the comment and assuming 'type` is always the third word.
EDIT 2: Requirement changed again:
produces:
I admit
MMTT
is missing in the first one, but oh well.