string str = "I come from Shanghai."; //根据空格切割 string[] strS = str.Split(‘ ‘); string tempStr = ""; for (int i = strS.Length - 1; i >= 0; i--) { tempStr = tempStr + strS[i] + " "; } //去掉最后一个空格 tempStr = tempStr.TrimEnd();
方法有多种。走过路过的朋友,可以发表想法,说说思路。
时间: 2025-01-31 18:47:54