I have this sentence:
Objet[id=100,name=car,type=grey,source=sourceId{id=12,version=12},linked=true]
I would like to isolate the result of the equality. Which give me something like that:
100
car
grey
sourceId{id=12,version=12}
true
As you can see the difficulty is because of the field source, which contain also equality but I don't want to split them. (Otherwise I would use \w*(=)
.)