Difference between revisions of "PowerShell Comparison Operators"
Jump to navigation
Jump to search
(Created page with "Equality -eq, -ieq, -ceq - equals -ne, -ine, -cne - not equals -gt, -igt, -cgt - greater than -ge, -ige, -cge - greater than or equal -lt, -ilt, -clt - less than -le, -ile, -cle - less than or equal Matching -like, -ilike, -clike - string matches wildcard pattern -notlike, -inotlike, -cnotlike - string doesn't match wildcard pattern -match, -imatch, -cmatch - string matches regex pattern -notmatch, -inotmatch, -cnotmatch - string doesn't match regex pattern Replacement...") |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Equality | <h2>Equality</h2> | ||
-eq, -ieq, -ceq - equals | *-eq, -ieq, -ceq - equals | ||
-ne, -ine, -cne - not equals | *-ne, -ine, -cne - not equals | ||
-gt, -igt, -cgt - greater than | *-gt, -igt, -cgt - greater than | ||
-ge, -ige, -cge - greater than or equal | *-ge, -ige, -cge - greater than or equal | ||
-lt, -ilt, -clt - less than | *-lt, -ilt, -clt - less than | ||
-le, -ile, -cle - less than or equal | *-le, -ile, -cle - less than or equal | ||
<h2>Matching</h2> | |||
- | *-like, -ilike, -clike - string matches wildcard pattern | ||
*-notlike, -inotlike, -cnotlike - string doesn't match wildcard pattern | |||
*-match, -imatch, -cmatch - string matches regex pattern | |||
*-notmatch, -inotmatch, -cnotmatch - string doesn't match regex pattern | |||
<h2>Replacement</h2> | |||
-is - both objects are the same type | *-replace, -ireplace, -creplace - replaces strings matching a regex pattern | ||
-isnot - the objects aren't the same type | |||
<h2>Containment</H2> | |||
*-contains, -icontains, -ccontains - collection contains a value | |||
*-notcontains, -inotcontains, -cnotcontains - collection doesn't contain a value | |||
*-in - value is in a collection | |||
*-notin - value isn't in a collection | |||
<H2>Type</H2> | |||
*-is - both objects are the same type | |||
*-isnot - the objects aren't the same type | |||
==[[Main_Page| Home]] - [[PowerShell|Category]]== |
Latest revision as of 18:39, 17 October 2024
Equality
- -eq, -ieq, -ceq - equals
- -ne, -ine, -cne - not equals
- -gt, -igt, -cgt - greater than
- -ge, -ige, -cge - greater than or equal
- -lt, -ilt, -clt - less than
- -le, -ile, -cle - less than or equal
Matching
- -like, -ilike, -clike - string matches wildcard pattern
- -notlike, -inotlike, -cnotlike - string doesn't match wildcard pattern
- -match, -imatch, -cmatch - string matches regex pattern
- -notmatch, -inotmatch, -cnotmatch - string doesn't match regex pattern
Replacement
- -replace, -ireplace, -creplace - replaces strings matching a regex pattern
Containment
- -contains, -icontains, -ccontains - collection contains a value
- -notcontains, -inotcontains, -cnotcontains - collection doesn't contain a value
- -in - value is in a collection
- -notin - value isn't in a collection
Type
- -is - both objects are the same type
- -isnot - the objects aren't the same type