我有一段代码,我需要缩短变量中的字符串。我想知道我该怎么做。我的代码如下。
string test = Console.ReadLine(); if(string.Length > 5) { //shorten string } Console.WriteLine(test); Console.ReadLine();
Cyral.. 5
使用string.Substring
。
test = test.Substring(0, 5);
Substring(0,5)
将采用字符串的前五个字符,因此将其分配回来将缩短该长度。
使用string.Substring
。
test = test.Substring(0, 5);
Substring(0,5)
将采用字符串的前五个字符,因此将其分配回来将缩短该长度。