我正在尝试编写一个程序来扫描环绕 WiFi 网络并将信息转储到包含 SSID 和加密类型的数组中。然后将 SSID 动态数组与尝试将 SSID 匹配在一起的静态数组进行比较,然后输出结果。
我在尝试创建仅将 SSID 和加密用于使用 Regex 的动态数组时遇到问题。网络转储的输出如下所示:
Interface name : Wireless Network Connection
There are 8 networks currently visible.
SSID 1 : TheChinaClub-5G
Network type : Infrastructure
Authentication : WPA2-Personal
Encryption : CCMP
我尝试使用 SSID 作为键,并将以下数字作为通配符(但不知道语法),并在冒号后获取数据,不包括空格。截至目前,除了网络转储之外,没有任何效果。正则表达式似乎没有找到任何东西。我一直在使用这篇文章作为正则表达式的模型。
这是我到目前为止的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Diagnostics;
using System.Text;
using System.Text.RegularExpressions;
namespace Rainbownetworks
{
public struct Networkarr
{
public string x, y;
public Networkarr(string SSID, string Encryption)
{
x = SSID;
y = Encryption;
}
}
class Program
{
static void Main(string[] args)
{
string[] StaticSSIDarr = { "network1", "network2", "network3" };
string[] Networkarr = { };
Process p = new Process();
p.StartInfo.FileName = "netsh.exe";
p.StartInfo.Arguments = "wlan show networks";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.Start();
string results = p.StandardOutput.ReadToEnd();
string[] SSIDs = { "SSID *"};
FindSSIDs(SSIDs, results);
Console.WriteLine(results);
Console.ReadLine();
}
private static void FindSSIDs(IEnumerable<string> keywords, string source)
{
var found = new Dictionary<string, string>(10);
var keys = string.Join("|", keywords.ToArray());
var matches = Regex.Matches(source, @"(?<key>" + keys + "):",
RegexOptions.IgnoreCase);
foreach (Match m in matches)
{
var key = m.Groups["key"].ToString();
var start = m.Index + m.Length;
var nx = m.NextMatch();
var end = (nx.Success ? nx.Index : source.Length);
found.Add(key, source.Substring(start, end - start));
}
foreach (var n in found)
{
Networkarr newnetwork = new Networkarr(n.Key, n.Value);
Console.WriteLine("Key={0}, Value={1}", n.Key, n.Value);
}
}
}
}