using System;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
string pattern = @"^(?:[[:^print:][:cntrl:]\s]|GIF89.{0,20})*<\?(?:php)?\s*\$yourmail\s*=.{0,40}?put your e-mail here.{0,190}?scam[\s\w]+by\s*walid\s*nabil.{0,70}?facebook\.com\/oreo0o.{0,50}?walid_nabil(?:[^>]+>\s*)?$";
string input = @"<?php
$yourmail = 'Tuto42@yahoo.com'; // PUT YOUR E-MAIL HERE
//To Open This Page : domain.com/?wal=mart
/*
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
$ $
$ THIS SCAM WAS CREATED BY Walid Nabil (OREOO) $
$ FB:https://www.facebook.com/OReo0o $
$ ICQ:https://icq.im/Walid_Nabil $
$ 2020 $
$ $
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
.----------------. .----------------. .----------------. .----------------. .----------------. .----------------.
| .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. |
| | ____ | || | _______ | || | _________ | || | ____ | || | ____ | || | ____ | |
| | .' `. | || | |_ __ \ | || | |_ ___ | | || | .' `. | || | .' `. | || | .' `. | |
| | / .--. \ | || | | |__) | | || | | |_ \_| | || | / .--. \ | || | / .--. \ | || | / .--. \ | |
| | | | | | | || | | __ / | || | | _| _ | || | | | | | | || | | | | | | || | | | | | | |
| | \ `--' / | || | _| | \ \_ | || | _| |___/ | | || | \ `--' / | || | \ `--' / | || | \ `--' / | |
| | `.____.' | || | |____| |___| | || | |_________| | || | `.____.' | || | `.____.' | || | `.____.' | |
| | | || | | || | | || | | || | | || | | |
| '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' |
'----------------' '----------------' '----------------' '----------------' '----------------' '----------------'
*/
?>
";
RegexOptions options = RegexOptions.IgnoreCase | RegexOptions.Singleline;
foreach (Match m in Regex.Matches(input, pattern, options))
{
Console.WriteLine("'{0}' found at index {1}.", m.Value, m.Index);
}
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for C#, please visit: https://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex(v=vs.110).aspx