I'm designing labels using Fingerprint, what I need is to modify text files with parameters, for example
PP 18,060:PT "*%Value*"
where value I should replace it with some string
, the files will be saved by part number c:/Etiquetas/1234.txt
String allString = "";
if (File.Exists(part))
{
using (StreamReader sr = new StreamReader(part))
{
allString = sr.ReadToEnd();
}
}
At the moment of opening / reading the entire TXT, it only wanted to modify the field of "%*Value*"
If you know of any library or any way to do this, I would appreciate it.