about_Parsing - PowerShell command help and examples

Describes how Windows PowerShell parses commands. (about_Parsing)

TOPIC
about_parsing
SHORT DESCRIPTION
Describes how Windows PowerShell parses commands.
LONG DESCRIPTION
When you enter a command at the command prompt, Windows PowerShell breaks the command text into a series of segments called tokens and then determines how to interpret each one. For example, Windows PowerShell breaks the following command into two tokens, "Write-Host" and "book", and interprets each token separately: Write-Host book When processing a command, the Windows PowerShell parser operates in expression mode or in argument mode: - In expression mode, character string values must be contained in quotation marks. Numbers not enclosed in quotation marks are treated as numerical values (rather than as a series of characters). - In argument mode, each value is treated as an expandable string unless it begins with one of the following special characters: dollar sign ($), at sign (@), single quotation mark ('), double quotation mark ("), or an opening parenthesis ((). If preceded by one of these characters, the value is treated as a value expression. The following table provides several examples of commands processed in expression mode and argument mode and the results produced by those commands. Example Mode Result ------------------ ---------- ---------------- 2+2 Expression 4 (integer) Write-Output 2+2 Argument "2+2" (string) Write-Output (2+2) Expression 4 (integer) $a = 2+2 Expression $a = 4 (integer) Write-Output $a Expression 4 (integer) Write-Output $a/H Argument "4/H" (string) Every token can be interpreted as some kind of object type, such as Boolean or string. Windows PowerShell attempts to determine the object type from the expression. The object type depends on the type of parameter a command expects and on whether Windows PowerShell knows how to convert the argument to the correct type. The following table shows several examples of the types assigned to values returned by the expressions. Example Mode Result ------------------ ---------- --------------- Write-Output !1 argument "!1" (string) Write-Output (!1) expression False (Boolean) Write-Output (2) expression 2 (integer) SEE ALSO about_Command_Syntax C:\Windows>powershell get-help about_Path_Syntax -full

Microsoft Windows [Version 10.0.19045.3693]
Copyright (c) 2023 Microsoft Corporation.

ColorConsole [Version 3.7.1000] PowerShell 2.0-Export

Windows 11, 10, 8.1, 8, 7 / Server 2022, 2019, 2016











Windows-10


... Windows 10 FAQ
... Windows 10 How To


Windows 10 How To


... Windows 11 How To
... Windows 10 FAQ



PowerShell: Describes how Windows PowerShell parses commands.

HTTP: ... PS_Windows/en/about_Parsing.htm
0.061
14360

Change / Translate the Language in The Aero Desktop Clock, can I!

Formatting via the Command Prompt Windows 11, 10, 8.1 , ...!

Can I find the Wallpapers directory in Windows 10 and 11?

Console and PowerShell show the Date or customize the Time!

How do I change the position of the desktop clock?

Understand the shutdown command under MS Windows!



(0)