如何在C#中提取一些字符串或拆分字符串

时间:2014-02-05 20:27:30

标签: c#

我从文件中提取属性会给我“3.522英尺^”,但我只想使用“3.522” 我如何在C#中执行此操作。我不知道如何放弃或拆分字符串?

2 个答案:

答案 0 :(得分:1)

您可以找到的出现位置并在其前面显示文字。

使用此:

string text = "3.522 ft^";
string replacement = text.Substring(0, text.IndexOf(' ') - 1);

答案 1 :(得分:0)

string replacement = new string(yourText.TakeWhile(c => c != ' ').ToArray());