This question already has answers here:
What method in the String class returns only the first N characters?
(12个答案)
3年前关闭。
我有一个字符串,我只需要获取前十个字符。有没有一种方法可以轻松做到这一点。
我希望有人可以告诉我。
(12个答案)
3年前关闭。
我有一个字符串,我只需要获取前十个字符。有没有一种方法可以轻松做到这一点。
我希望有人可以告诉我。
最佳答案
string s = "Lots and lots of characters";
string firstTen = s.Substring(0, 10);