Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1.   string chuoi = Clipboard.GetText();
  2.             chuoi = chuoi.Replace("\\\"", "");
  3.             chuoi = chuoi.Replace("\\\\", "\\");
  4.             MatchCollection match = Regex.Matches(chuoi, "\"=\"(.*?.exe)");
  5.             for (int i = 0; i < match.Count; i++)
  6.             {
  7.                 MessageBox.Show(match[i].Groups[1].Value);
  8.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement