解字符串问题
c:/temp/1.wav 我要1这个字符 完了把1字符进行叠加 怎摸写? --------------------编程问答--------------------
string fullFileName = "c:/temp/1.wav";
string fileName = fullFileName.Substring(fullFileName.LastIndexOf(char.Parse("/")) + 1);
string fileNameWithoutType = fileName.Substring(0, fileName.IndexOf(char.Parse(".")));
int index = int.Parse(fileNameWithoutType) + 1;
当然,其他的要有异常处理啊什么的就不仔细说了,楼主也一定知道。 --------------------编程问答-------------------- 用正则表达式 (?<num>\d*) 可以取出字符串中的数字, --------------------编程问答--------------------
string fullname = "c:/temp/1.wav";
string name = System.IO.Path.GetFileNameWithoutExtension(fullname);
MessageBox.Show(name);
补充:.NET技术 , ASP.NET