您好,
// Input string
string st = " This is an example string. ";
// Call Trim instance method.
// This returns a new string copy.
st = st.Trim();
// output
"This is an example string."
我该如何摆出
"Thisisanexamplestring."
我想删除整个句子之间的所有空白。感谢。
答案 0 :(得分:8)
Trim仅删除字符串开头和结尾的字符。您想要替换所有出现的空间。请使用String.Replace:
st = st.Replace(" ", string.Empty); // Thisisanexamplestring.
请注意,因为我们替换了所有空格实例,所以不需要String.Trim。