What is the full list of number suffixes in PowerShell?

前端 未结 2 1509
遥遥无期
遥遥无期 2021-01-17 20:20

What is the full list of suffixes you can use on PowerShell number literals?
So far I have found:

╔════════╦═════════╦════════════════════════╗
║ Suffix          


        
2条回答
  •  时光取名叫无心
    2021-01-17 20:46

    According to the PowerShell Language Specification (V3) that is the complete set.

    • §2.3.5.1.1 Integer Literals includes: l, kb, mb, gb, tb, and pb.
    • §2.3.5.1.2 Real Literals adds d.

    As far as I am aware (no update to the specification has been published) PowerShell V4 does not add any further suffixes.

提交回复
热议问题