Guest User

Untitled

a guest
Jul 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. static public void ReplaceInFile(string filePath, string searchText, string replaceText)
  2. {
  3. StreamReader reader = new StreamReader(filePath);
  4.  
  5. string content = reader.ReadToEnd();
  6. reader.Close();
  7.  
  8. content = Regex.Replace(content, searchText, replaceText);
  9.  
  10. StreamWriter writer = new StreamWriter("ute.nfo");
  11. writer.Write(content);
  12. writer.Close();
  13. }
Add Comment
Please, Sign In to add comment