I try to extract the value (IP Address) of the wan_ip with this sourcecode:
Whats wrong?! I′m sure that the RegEx pattern is correct.
String input = @"var product_pic_fn=;var firmware_ver='20.02.024';var wan_ip='92.75.120.206';if (parent.location.href != window.location.href)";
Regex ip = new Regex(@"[d{1,3}.d{1,3}.d{1,3}.d{1,3}");
string[] result = ip.Split(input);
foreach (string bla in result)
{
Console.WriteLine(bla);
}
Console.Read();
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…