我想使用powershell检查变量A中的变量是否存在:
variable A = PROD
variable B = xxxxxPRODxxxx
答案 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