Guest User

Untitled

a guest
May 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1.             string text = "C:\\Documents\\Program\\" + site + ".txt";
  2.             string Rtext = File.ReadAllText(text);
  3.  
  4.             string pattern = "<blablabla>(.*)</blabla>";
  5.             Regex Regex = new Regex(pattern);
  6.             string change = Regex.Match(Rtext);
Add Comment
Please, Sign In to add comment