如何从特定txt文件中的特定行更改特定对象

如何从特定txt文件中的特定行更改特定对象

本文介绍了如何从特定txt文件中的特定行更改特定对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我有医院自动化代码,在删除部分我需要更改有关患者的特定信息而不删除整行。 什么我试过了: i试过: var file = new List< string>(系统.IO.File.ReadAllLines( Hasta.txt)); // ArananTc'yegöretizilerkullanarakHastadosya'sındabilgilerisil file.RemoveAt(i); File.WriteAllLines(Hasta.txt,file.ToArray()); 解决方案 I have a Hospital automation code and at the delete section i need to change a specific information about the Patient without delete the whole line.What I have tried:i tried :var file = new List<string>(System.IO.File.ReadAllLines("Hasta.txt")); //Aranan Tc'ye göre diziler kullanarak Hasta dosya'sında bilgileri sil file.RemoveAt(i); File.WriteAllLines("Hasta.txt", file.ToArray()); 解决方案 这篇关于如何从特定txt文件中的特定行更改特定对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-05 12:35