document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #$regularexpression will contain our regular expression, which in the example is \'href="/........">\'
  2. $regularexpression=New-Object Text.RegularExpressions.Regex \'href="/........">\',("Singleline", "IgnoreCase")
  3.  
  4. #$regexmatches will contain the resulting matches
  5. $regexmatches = $regularexpression.matches($contentvariable)
');