使用子字符串在带有PowerShell的另一个变量上查找变量

时间:2019-01-07 18:16:58

标签: powershell powercli

我想使用powershell检查变量A中的变量是否存在:

variable A = PROD 
variable B = xxxxxPRODxxxx

2 个答案:

答案 0 :(得分:0)

您可以使用-match使用正则表达式进行比较

$keyword = 'PROD'
$string = 'xxxxxPRODxxxxx'
if($string -match $keyword){write-host 'matched'}

答案 1 :(得分:0)

使用mounted(){ ... }, methods:{ fetchChatSessionHistory (uri){ .... } } 方法:

String.Contains()

或使用$A = 'PROD' $B = 'xxxxPRODxxxx' $B.Contains($A) 运算符:

-like