=MID($A1,SEARCH("MeContext=",$A1)+10,SEARCH(",ME=",$A1)-SEARCH("MeContext=",$A1)-10)
Select allOpen in new window
=MID($A1,SEARCH("EFDD=",$A1)+5,SEARCH(",ER=",$A1)-SEARCH("EFDD=",$A1)-5)
=MID($A1,SEARCH("MeContext=",$A1)+10,16)
=MID($A1,SEARCH("EFDD=",$A1)+5,16)
Function extract(ori As String, toExtract As String) As String Dim st() As String st = Split(ori, ",") For Each s In st If InStr(1, s, toExtract) > 0 Then extract = Split(s, "=")(1) Exit Function End If Next End Function
Try below in B1:
Open in new window
And below in C1:Open in new window