I have a kind of note which i stored in verbative string like:
string a = @"123123
456456
868686";
now i want to change all the spaces and enters that are pressed above(twice) and make it like this:
string a = @"123123456456868686";
What logic should i use?