Powershell字符串不包含

时间:2015-01-15 18:27:06

标签: string powershell

我有一些带有字符串的代码,

Foreach($user in $allUsers){
    if($user.DisplayName.ToLower().Contains("example.com") -or $user.DisplayName.ToLower()) {
    } else {
        $output3 = $externalUsers.Rows.Add($user.DisplayName)
    }
}

if之后的-or的一部分我需要检查字符串是否不包含@符号。如何检查@符号是否丢失?

1 个答案:

答案 0 :(得分:12)

有一百万种方法可以做到这一点,由于可读性,我可能会选择以下方法:

$user.DisplayName -inotmatch "@"

-match运算符使用右侧的模式对左侧操作数进行正则表达式匹配。

使用i作为前缀,明确表示 - i nsensitive,not前缀否定表达式

你也可以这样做:

-not($user.DisplayName.ToLower().Contains("@"))
or
!$user.DisplayName.ToLower().Contains("@")

对于简单的通配符文本匹配(也许你讨厌正则表达式,我知道什么?):

$user.DisplayName -notlike "*@*"

或者用IndexOf查找子字符串;

$user.DisplayName.IndexOf("@") -eq (-1)