I need to remove dynamic substring from string. e.g.:
Item value1="001" value2="abc" value3="123xyz"
and i need output:
Item value1="001" value3="123xyz"
I mean I need remove value2="abc". value2 is an unique element and can be placed anywhere in original string. "abc" is dynamic variable and can have various length. What is the fastest solution of this problem? Thank you.