在 Form1 中,我有:
satelliteMapToRead = File.ReadAllText(localFilename + "satelliteMap.txt");
然后在构造函数中:
ExtractImages.ExtractDateTime("image2.ashx?region=eu&time=", "&ir=true", satelliteMapToRead);
然后在 ExtractImages 类中我有:
public static void ExtractDateTime(string firstTag, string lastTag, string f)
{
int index = 0;
int t = f.IndexOf(firstTag, index);
int g = f.IndexOf(lastTag, index);
string a = f.Substring(t, g - t);
}
这是文本文件中的字符串示例:
image2.ashx?region=eu&time=201309202145&ir=true
从这个字符串中,我希望变量 g 仅包含:201309202145 然后将变量 a 转换为日期时间:日期 2013 09 20 - 时间 21 45
我现在在变量 a 中得到的是:
image2.ashx?region=eu&time=201309202215
这不是我需要的。