What is the full list of number suffixes in PowerShell?

前端 未结 2 1489
遥遥无期
遥遥无期 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:36

    The suffices are fully documented here.

    y   signed byte data type           Added in PowerShell 6.2
    uy  unsigned byte data type         Added in PowerShell 6.2
    s   short data type                 Added in PowerShell 6.2
    us  unsigned short data type        Added in PowerShell 6.2
    l   long data type
    u   unsigned int or long data type  Added in PowerShell 6.2
    ul  unsigned long data type         Added in PowerShell 6.2
    kb  kilobyte multiplier
    mb  megabyte multiplier
    gb  gigabyte multiplier
    tb  terabyte multiplier
    pb  petabyte multiplier
    

提交回复
热议问题