从 TextBox 中提取部分字符串以替换同一 TextBox 的文本

Extract partial strings from a TextBox that replace the text of the same TextBox

我的代码需要帮助。
我有一个 TextBox,其中包含这样的文本行:

"hello my friends, how r u?","today is good"
"I'm fine","and you"
"have a nice day","thanks"

我想使用 SubString()(或其他方法,这无关紧要)为此 TextBox 项目删除子字符串。
当我编译我的代码时,我想在我的 TextBox(同一个 TextBox,而不是新的)中看到这个输出。

 hello my friends, how r u?
 I'm fine
 have a nice day

如果文本中没有任何其他引号,拆分字符串并删除引号就足够了。
拆分字符串后,取出数组中具有偶数索引的行并将所有内容放回 TextBox 中。

textBox1.Text = string.Join("\r\n", textBox1.Text
                      .Split(new[] { "\r\n", "\",\"" }, StringSplitOptions.RemoveEmptyEntries)
                      .Where((s, i) => i % 2 == 0)).Replace("\"", "");