I have an input string which contains strings like code =test1 description=test1 description status = pending,code =test2 description=test2 description status = COMPLTED, code =test3 description=test3 description status = COMPLETED_FIRST,code =test2 description=test2 description status = COMPLTED,
Expected Ouput
Code count
test2 2
test3 1
Basically i am looking for whose status is completed or starts with completed word those code name and completion count in the result. Can anyone please help me on this.
... View more