如何删除“”之间的空白?我有超过 100 行的富文本框,我的句子如下所示,“”之间有空格。
我的句子
remove only " railing" spaces of a string in Java
remove only " trailing" spaces of a string in Java
remove only " ling" spaces of a string in Java
remove only " ing" spaces of a string in Java
.
.
.
应该:
remove only "railing" spaces of a string in Java
remove only "trailing" spaces of a string in Java
remove only "ling" spaces of a string in Java
remove only "ing" spaces of a string in Java
.
.
.
我的代码
richTextBox1.lines.Trim().Replace("\" \" ", " ");