• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Powershell小技巧之使用-F方法带入数据

    封闭在双引号中的字符串能够直接使用变量,这是常用的手法,如代码:

    $name = $host.Name 
    "Your host is called $name."

    可是这个技巧也有限制。如果你想要显示对象的属性而不是这个变量的本身,例如这样将会失败:

    PS> "Your host is called $host.Name."
    Your host is called System.Management.Automation.Internal.Host.InternalHost.Name.

    这是因为PS仅能解决变量的本身(如$host),而不支持它的属性。

    同时你也不能控制数字的格式,执行下面代码,结果看起来有很多位数字:

    # get available space in bytes for C: drive 
    $freeSpace = ([WMI]'Win32_LogicalDisk.DeviceID="C:"').FreeSpace 
     
    # convert to MB 
    $freeSpaceMB = $freeSpace / 1MB 
     
    # output 
    "Your C: drive has $freeSpaceMB MB space available."

    这里有一个 -F 方法能同时解决这些问题。只需要将它放在模版文本的左边,它的值就会被正确的带入:

    # insert any data into the text template 
    'Your host is called {0}.' -f $host.Name 
     
    # calculate free space on C: in MB 
    $freeSpace = ([WMI]'Win32_LogicalDisk.DeviceID="C:"').FreeSpace 
    $freeSpaceMB = $freeSpace /1MB 
    
    # output with just ONE digit after the comma 
    'Your C: drive has {0:n1} MB space available.' -f $freeSpaceMB
    

    现在你看,使用-F让你有两个有利条件:这里带括号的占位符指出了带入参数的起始位置,同时它还接受格式。“n1”代表保留1位小数。可以改变它来满足你的需求。

    支持PS所有版本

    您可能感兴趣的文章:
    • PowerShell中使用Get-ChildItem命令读取目录、文件列表使用例子和小技巧
    • Powershell小技巧之使用Copy-Item添加程序到开机启动
    • Powershell小技巧之复合筛选
    • Powershell小技巧之通过EventLog查看近期电脑开机和关机时间
    • Powershell小技巧之使用Get-ChildItem得到指定扩展名文件
    上一篇:Powershell小技巧之播放WAV声音
    下一篇:Powershell小技巧之使用Copy-Item添加程序到开机启动
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Powershell小技巧之使用-F方法带入数据 Powershell,小,技巧,之,使用,