在 powershell 中从命令输出的不同位置捕获子字符串
Capture substring at different positions from command's output in powershell
我是 运行 windows 终端中的一个命令:
PS E:\> netsh wlan show profile name="wifi_profile" key=clear | findstr "Key Content"
Key Content : password1234
所以我在这里尝试只获取 password123
(wifi 密码)in output 任何配置文件
powershell 中有什么方法可以做到吗?
我是 运行 windows 终端中的一个命令:
PS E:\> netsh wlan show profile name="wifi_profile" key=clear | findstr "Key Content"
Key Content : password1234
所以我在这里尝试只获取 password123
(wifi 密码)in output 任何配置文件
powershell 中有什么方法可以做到吗?