I need to extract sections of a string but I won't always know the length/content.
I've tried converting the string to XML or JSON for instance, and can't come up with any other way to achieve what I'm looking for.
Example string:
'Other parts of the string Name="SomeRandomAmountOfCharacters" blah blah'
What I need to remove always starts with an attribute name and ends with a closing double quote. So can I say I'd like to remove substring starting at Name=" and go until we reach the closing "?
Expected result:
'Other parts of the string blah blah'