我有一个具有特定格式的文本文件。首先是一个标识符,后跟三个空格和一个冒号。然后是这个标识符的值。
ID1 :Value1
ID2 :Value2
ID3 :Value3
我需要做的是搜索,例如对于ID2 :
并使用新值Value2
替换NewValue2
。怎么办呢?我需要解析的文件不会变得非常大。最大的将是大约150行。
答案 0 :(得分:4)
这是一个简单的解决方案,它还会自动创建源文件的备份。
替换存储在Dictionary
对象中。它们是在线路ID上键入的,例如'ID2'和值是需要的字符串替换。只需使用Add()
根据需要添加更多内容。
StreamWriter writer = null;
Dictionary<string, string> replacements = new Dictionary<string, string>();
replacements.Add("ID2", "NewValue2");
// ... further replacement entries ...
using (writer = File.CreateText("output.txt"))
{
foreach (string line in File.ReadLines("input.txt"))
{
bool replacementMade = false;
foreach (var replacement in replacements)
{
if (line.StartsWith(replacement.Key))
{
writer.WriteLine(string.Format("{0} :{1}",
replacement.Key, replacement.Value));
replacementMade = true;
break;
}
}
if (!replacementMade)
{
writer.WriteLine(line);
}
}
}
File.Replace("output.txt", "input.txt", "input.bak");
您只需将input.txt
,output.txt
和input.bak
替换为源,目标和备份文件的路径。
答案 1 :(得分:3)
如果文件不是那么大,你可以File.ReadAllLines
来获取所有行的集合,然后替换你正在寻找的行
using System.IO;
using System.Linq;
using System.Collections.Generic;
List<string> lines = new List<string>(File.ReadAllLines("file"));
int lineIndex = lines.FindIndex(line => line.StartsWith("ID2 :"));
if (lineIndex != -1)
{
lines[lineIndex] = "ID2 :NewValue2";
File.WriteAllLines("file", lines);
}
答案 2 :(得分:1)
通常情况下,对于任何文本搜索和替换,我都会建议使用某种正则表达式,但如果这就是你所做的一切,那真是太过分了。
我只打开原始文件和临时文件;一次读取原始行,只需检查每行“ID2:”;如果找到它,请将替换字符串写入临时文件,否则,只需写下您读取的内容即可。当您的源代码用完时,关闭它们,删除原始文件,并将临时文件重命名为原始文件。
答案 3 :(得分:0)
这样的事情应该有效。它非常简单,不是最有效的,但对于小文件,它会很好:
private void setValue(string filePath, string key, string value)
{
string[] lines= File.ReadAllLines(filePath);
for(int x = 0; x < lines.Length; x++)
{
string[] fields = lines[x].Split(':');
if (fields[0].TrimEnd() == key)
{
lines[x] = fields[0] + ':' + value;
File.WriteAllLines(lines);
break;
}
}
}
答案 4 :(得分:0)
您可以使用正则表达式并在3行代码中执行此操作
string text = File.ReadAllText("sourcefile.txt");
text = Regex.Replace(text, @"(?i)(?<=^id2\s*?:\s*?)\w*?(?=\s*?$)", "NewValue2",
RegexOptions.Multiline);
File.WriteAllText("outputfile.txt", text);
在正则表达式中,(?i)(?&lt; = ^ id2 \ s *?:\ s *?)\ w *?(?= \ s *?$)表示,找到以 id2 开头的任何内容:
之前和之后的任意数量的空格,并替换以下字符串(任何字母数字字符,不包括标点符号)直到行尾。如果您想要包含标点符号,请将 \ w *?替换为。*?
答案 5 :(得分:-1)
您可以使用正则表达式实现此目的。
Regex re = new Regex(@"^ID\d+ :Value(\d+)\s*$", RegexOptions.IgnoreCase | RegexOptions.Compiled);
List<string> lines = File.ReadAllLines("mytextfile");
foreach (string line in lines) {
string replaced = re.Replace(target, processMatch);
//Now do what you going to do with the value
}
string processMatch(Match m)
{
var number = m.Groups[1];
return String.Format("ID{0} :NewValue{0}", number);
}