解决方法
使用-match运算符:
if ($test -match 'regex_here') { 'It matched' }
另请查看在线文档以获取比较运算符:http://technet.microsoft.com/en-us/library/hh847759.aspx
if ($test -match 'regex_here') { 'It matched' }
另请查看在线文档以获取比较运算符:http://technet.microsoft.com/en-us/library/hh847759.aspx