Results 1 to 12 of 12
Thread: .exe C# ?
Hybrid View
-
26th January 2009 23:49 #1Registered User
Join Date: Jan:2009
Location: Varna
Posts: 27
.exe C# ?
-
27th January 2009 00:10 #2
-
27th January 2009 00:22 #3Registered User
Join Date: Jan:2009
Location: Varna
Posts: 27
. C# , C++ . web .
web , Regular Expressions, , . o, , .Last edited by DreamInvader; 27th January 2009 at 00:40.
-
27th January 2009 00:33 #4Registered User
Join Date: Aug:2006
Location:
Posts: 4,052
- RE
-
27th January 2009 01:07 #5
.NET Reflector - http://www.red-gate.com/products/reflector/
-
27th January 2009 01:11 #6Code:
private static int x; public static void CheckSupport(string inputString, string a) { Thread.Sleep(60); string pattern = a; if (Regex.Match(inputString, pattern, RegexOptions.Compiled | RegexOptions.IgnoreCase).Success) { Console.WriteLine("String Was Found!"); } else { Console.WriteLine("String Was NOT Found!"); } } public static void Main() { string address = "https://shop.playrohan.com/Exchange/Character_Sale_List.html"; Console.WriteLine("Use https://shop.playrohan.com/Exchange/Character_Sale_List.html As Site?"); Console.WriteLine("Y for Yes | N for no"); if (Console.ReadLine() == "N") { Console.WriteLine("Enter Website Now"); address = Console.ReadLine(); } Console.WriteLine("Enter String"); string a = Console.ReadLine(); WebClient client = new WebClient(); x = 1; while (x == 1) { StreamReader reader = new StreamReader(client.OpenRead(address)); string inputString = reader.ReadToEnd(); reader.Close(); CheckSupport(inputString, a); } } , ...
-
27th January 2009 01:09 #7
( Regex-):
Code:#!/usr/bin/python import urllib, re URL = "https://shop.playrohan.com/Exchange/Character_Sale_List.html" data = urllib.urlopen(URL).readlines() print "Enter String" ex = re.compile(raw_input()) for line in data: if ex.search(line): print "String Was Found!"
, . .
"640K ught to be enough for anybody" - Bill Gates, 1981
::Machine specs::Fract::AGG::::Baileys::blog::YouTube channel
-
27th January 2009 01:40 #8
-
27th January 2009 01:52 #9Registered User
Join Date: Jan:2009
Location: Varna
Posts: 27
, RedGate Reflector-, , , ..,

, . .- !
-
27th January 2009 02:09 #10
-
27th January 2009 05:35 #11Registered User
Join Date: Jan:2009
Location: Varna
Posts: 27
, . , :P
ICQ, , .
anrieff , ?Last edited by DreamInvader; 27th January 2009 at 05:42.
-
27th January 2009 08:15 #12Registered User
Join Date: Aug:2006
Location:
Posts: 4,052
anrieff




Reply With Quote

Lenovo ThinkPad 15 IdeaPad 15
5th May 2023, 22:16 in