编写c#程序,修改文件后缀名

某文件名为“.txt”,其中可能由若干个英文单词组成。将此文件名改为“*.dat”,并且单词之间用下划线连接,例如: hello world.txt,改为hello_world.dat

//某文件名为"*.txt",其中*可能由若干个英文单词组成,将此文件名改为"*.dat",
//并且单词之间用下划线连接,例如:hello world.txt,改为hello_world.dat

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{ 
	class Program
	{ 
		public static void Main(string[] args)
		{ 
			string filename = @"hello world.txt", extendName = "dat";
			int index = filename.LastIndexOf('.');
			filename = filename.Substring(0, index + 1);
			string[] splitFilename = filename.Split(' ');
			filename = string.Join("_",splitFilename);
			filename += extendName;
			Console.WriteLine(filename);
		}
	}
}
    原文作者:Zandz_
    原文地址: https://blog.csdn.net/qq_43794633/article/details/114649745
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞