问题描述
c:/temp/1.wav我要1这个字符完了把1字符进行叠加怎摸写?
解决方案
解决方案二:
stringfullFileName="c:/temp/1.wav";stringfileName=fullFileName.Substring(fullFileName.LastIndexOf(char.Parse("/"))+1);stringfileNameWithoutType=fileName.Substring(0,fileName.IndexOf(char.Parse(".")));intindex=int.Parse(fileNameWithoutType)+1;
当然,其他的要有异常处理啊什么的就不仔细说了,楼主也一定知道。
解决方案三:
用正则表达式(?<num>d*)可以取出字符串中的数字,
解决方案四:
stringfullname="c:/temp/1.wav";stringname=System.IO.Path.GetFileNameWithoutExtension(fullname);MessageBox.Show(name);
时间: 2024-11-02 02:36:14