I have an input string like:-
a=1|b=2|c=3|d=4|e=5 and so on...
What I would like to do is extract d=4 part from a very long string of similar pattern.Is there any way to get a substring based on starting point delimter and ending point delimiter?
Such that, I can start from 'd=' and search till '|' to extract its value.Any insights would be welcome.