Здравствуйте, делаю get запрос
string k = "helo thera";
var response = await client.PostAsync("http://speller.yandex.net/services/spellservice.json/checkText?text="+k+"&callback=fix_spell", content);
var responseString = await response.Content.ReadAsStringAsync();
получаю json с нужной мне заменой,
fix_spell([{"code":1,"pos":0,"row":0,"col":0,"len":4,"word":"helo","s":["hello"]},{"code":1,"pos":5,"row":0,"col":5,"len":6,"word":"thera\u0435","s":["there"]}])
Как мне теперь поменять в переменной k:
helo на hello
thera на there?