PowerShell
operatori
Ricerca…
introduzione
Un operatore è un personaggio che rappresenta un'azione. Indica al compilatore / interprete di eseguire operazioni matematiche, relazionali o logiche specifiche e di produrre risultati finali. PowerShell interpreta in modo specifico e categorizza di conseguenza, come gli operatori aritmetici eseguono operazioni principalmente su numeri, ma influenzano anche le stringhe e altri tipi di dati. Insieme agli operatori di base, PowerShell dispone di un numero di operatori che risparmia tempo e impegno nella codifica (ad esempio: -like, -match, -replace, ecc.).
Operatori aritmetici
1 + 2 # Addition
1 - 2 # Subtraction
-1 # Set negative value
1 * 2 # Multiplication
1 / 2 # Division
1 % 2 # Modulus
100 -shl 2 # Bitwise Shift-left
100 -shr 1 # Bitwise Shift-right
Operatori logici
-and # Logical and
-or # Logical or
-xor # Logical exclusive or
-not # Logical not
! # Logical not
Operatori di assegnazione
Aritmetica semplice:
$var = 1 # Assignment. Sets the value of a variable to the specified value
$var += 2 # Addition. Increases the value of a variable by the specified value
$var -= 1 # Subtraction. Decreases the value of a variable by the specified value
$var *= 2 # Multiplication. Multiplies the value of a variable by the specified value
$var /= 2 # Division. Divides the value of a variable by the specified value
$var %= 2 # Modulus. Divides the value of a variable by the specified value and then
# assigns the remainder (modulus) to the variable
Incremento e decremento:
$var++ # Increases the value of a variable, assignable property, or array element by 1
$var-- # Decreases the value of a variable, assignable property, or array element by 1
Operatori di confronto
Gli operatori di confronto di PowerShell sono composti da un trattino iniziale ( -
) seguito da un nome ( eq
per equal
, gt
per greater than
, ecc ...).
I nomi possono essere preceduti da caratteri speciali per modificare il comportamento dell'operatore:
i # Case-Insensitive Explicit (-ieq)
c # Case-Sensitive Explicit (-ceq)
Case-Insensitive è il valore predefinito se non specificato, ("a" -eq "A") uguale a ("a" -ieq "A").
Operatori di confronto semplici:
2 -eq 2 # Equal to (==)
2 -ne 4 # Not equal to (!=)
5 -gt 2 # Greater-than (>)
5 -ge 5 # Greater-than or equal to (>=)
5 -lt 10 # Less-than (<)
5 -le 5 # Less-than or equal to (<=)
Operatori di confronto delle stringhe:
"MyString" -like "*String" # Match using the wildcard character (*)
"MyString" -notlike "Other*" # Does not match using the wildcard character (*)
"MyString" -match "$String^" # Matches a string using regular expressions
"MyString" -notmatch "$Other^" # Does not match a string using regular expressions
Operatori di confronto delle collezioni:
"abc", "def" -contains "def" # Returns true when the value (right) is present
# in the array (left)
"abc", "def" -notcontains "123" # Returns true when the value (right) is not present
# in the array (left)
"def" -in "abc", "def" # Returns true when the value (left) is present
# in the array (right)
"123" -notin "abc", "def" # Returns true when the value (left) is not present
# in the array (right)
Operatori di reindirizzamento
Flusso di output di successo:
cmdlet > file # Send success output to file, overwriting existing content
cmdlet >> file # Send success output to file, appending to existing content
cmdlet 1>&2 # Send success and error output to error stream
Errore flusso di output:
cmdlet 2> file # Send error output to file, overwriting existing content
cmdlet 2>> file # Send error output to file, appending to existing content
cmdlet 2>&1 # Send success and error output to success output stream
Flusso di output di avviso: (PowerShell 3.0+)
cmdlet 3> file # Send warning output to file, overwriting existing content
cmdlet 3>> file # Send warning output to file, appending to existing content
cmdlet 3>&1 # Send success and warning output to success output stream
Flusso di output dettagliato: (PowerShell 3.0+)
cmdlet 4> file # Send verbose output to file, overwriting existing content
cmdlet 4>> file # Send verbose output to file, appending to existing content
cmdlet 4>&1 # Send success and verbose output to success output stream
Debug output stream: (PowerShell 3.0+)
cmdlet 5> file # Send debug output to file, overwriting existing content
cmdlet 5>> file # Send debug output to file, appending to existing content
cmdlet 5>&1 # Send success and debug output to success output stream
Flusso di output delle informazioni: (PowerShell 5.0+)
cmdlet 6> file # Send information output to file, overwriting existing content
cmdlet 6>> file # Send information output to file, appending to existing content
cmdlet 6>&1 # Send success and information output to success output stream
Tutti i flussi di output:
cmdlet *> file # Send all output streams to file, overwriting existing content
cmdlet *>> file # Send all output streams to file, appending to existing content
cmdlet *>&1 # Send all output streams to success output stream
Differenze rispetto all'operatore del tubo ( |
)
Gli operatori di reindirizzamento reindirizzano solo i flussi a file o flussi su flussi. L'operatore del tubo pompa un oggetto lungo la pipeline a un cmdlet o all'output. In che modo la pipeline funziona differisce in generale dal modo in cui il reindirizzamento funziona e può essere letto in Lavorare con la pipeline di PowerShell
Tipi di operando di missaggio: il tipo dell'operando sinistro determina il comportamento.
Per aggiunta
"4" + 2 # Gives "42"
4 + "2" # Gives 6
1,2,3 + "Hello" # Gives 1,2,3,"Hello"
"Hello" + 1,2,3 # Gives "Hello1 2 3"
Per moltiplicazione
"3" * 2 # Gives "33"
2 * "3" # Gives 6
1,2,3 * 2 # Gives 1,2,3,1,2,3
2 * 1,2,3 # Gives an error op_Multiply is missing
L'impatto può avere conseguenze nascoste sugli operatori di confronto:
$a = Read-Host "Enter a number"
Enter a number : 33
$a -gt 5
False
Operatori di manipolazione delle stringhe
Sostituisci operatore:
L'operatore -replace
sostituisce un modello in un valore di input utilizzando un'espressione regolare. Questo operatore utilizza due argomenti (separati da una virgola): un modello di espressione regolare e il suo valore di sostituzione (che è facoltativo e una stringa vuota per impostazione predefinita).
"The rain in Seattle" -replace 'rain','hail' #Returns: The hail in Seattle
"[email protected]" -replace '^[\w]+@(.+)', '$1' #Returns: contoso.com
Dividi e unisciti agli operatori:
L'operatore -split
suddivide una stringa in una serie di sottostringhe.
"A B C" -split " " #Returns an array string collection object containing A,B and C.
L'operatore -join
unisce una serie di stringhe in una singola stringa.
"E","F","G" -join ":" #Returns a single string: E:F:G