修剪文件名以获取变量

时间:2018-02-02 16:02:22

标签: c# asp.net variables trim

我想知道修剪文件名以获取特定变量的最佳方法是什么。例如,文件名是:

  

5000 + 10-08-2018_Image2.jpg

我想要的是5000和10-08-2018分开,所以我这样做了:

SELECT DISTINCT FIRSTNAME, LASTNAME 
FROM PERSON  
JOIN STUDENT ON PERSON.PERSONID = STUDENT.STUDENTID 
JOIN CLASSSTUDENT ON STUDENT.STUDENTID = CLASSSTUDENT.STUDENTID
WHERE STUDENT.YEARSTART > 2010
  AND (SELECT AVG(FINALGRADE) 
       FROM CLASSSTUDENT
       WHERE FINALGRADE IS NOT NULL
         AND FINALGRADE > 1) >= 4.50;

我得到了," 5000 + 2018-02-05"。如何进行下一步以将这些值分开。我试过这个:

 string input = file.Name;
 int index = input.IndexOf("_");
 if (index > 0)
    input = input.Substring(0, index);
 string newInterval = input;

我得到了," 5000"和" 5000 + 10-08-2018"。

我是C#ASP.NET编码的新手,所以任何帮助都会非常感激。谢谢。

3 个答案:

答案 0 :(得分:2)

我先使用Path.GetFileNameWithoutExtension,然后使用IndexOf + Remove

string fn = Path.GetFileNameWithoutExtension(file.Name);
int plusIndex = fn.IndexOf('+');
if(plusIndex > -1)
{
   string beforePlus = fn.Remove(plusIndex); 
}

答案 1 :(得分:1)

您应该尝试从indexInterval到indexDate获取子字符串。

    string input = file.Name;
    string input2 = file.Name;
    int indexInterval = input.IndexOf("+");
    int indexDate = input2.IndexOf("_");
    if (indexInterval > 0)
        input = input.Substring(0, indexInterval);

    if (indexDate > 0)
        input2 = input2.Substring(indexInterval + 1, indexDate - indexInterval - 1);

    string newInterval = input;
    string newDate = input2;

答案 2 :(得分:1)

您可以在指定的分隔符上拆分字符串。

string fileName = "5000+10-08-2018_Image2.jpg";
string[] underscoreParts = fileName.Split(new char[] { '_' });
if (underscoreParts.Length > 0)
{
    string[] plusParts = underscoreParts[0].Split(new char[] { '+' });
    Console.WriteLine($"{plusParts[0]}\n{plusParts[1]}");
}

返回:

5000
10-08-2018