Im trying to parse a string
{"Url":"http://repreeapi.cloudapp.net/PublicApi/{ActionName}/f23284d5-90a7-4c41-9bd4-8a47e64b4a75"}
I would just like to keep this part and save it as a new string: http://repreeapi.cloudapp.net/PublicApi/{ActionName}/f23284d5-90a7-4c41-9bd4-8a47e64b4a75
And then I would like to replace {ActionName} with "launch"
so the final string should be
http://repreeapi.cloudapp.net/PublicApi/launch/f23284d5-90a7-4c41-9bd4-8a47e64b4a75
I've tried using the split method but can't seem to get the result I want. Any help would be appreciated?