手机
当前位置:查字典教程网 >脚本专栏 >PowerShell >Powershell小技巧之去除多余的空格
Powershell小技巧之去除多余的空格
摘要:要去去除多余的空格,请尝试下面正则表达式:PS>'[Man,itworks!]'-replace's{2,}',''[Man,itworks...

要去去除多余的空格,请尝试下面正则表达式:

PS> '[ Man, it works! ]' -replace 's{2,}', ' ' [ Man, it works! ]

你也可以用这个方法转换成固定格式的CSV表格:

PS> (qprocess) -replace 's{2,}', ',' >tobias,console,1,3876,taskhostex.exe >tobias,console,1,3844,explorer.exe >tobias,console,1,4292,tabtip.exe

一旦变成CSV格式,你就可以使用ConvertFrom-Csv获取该文本数据的对象:

PS> (qprocess) -replace 's{2,}', ',' | ConvertFrom-Csv -Header Name, Session, ID, Pid, Process Name : >tobias Session : console ID : 1 Pid : 3876 Process : taskhostex.exe Name : >tobias Session : console ID : 1 Pid : 3844 Process : explorer.exe Name : >tobias Session : console ID : 1 Pid : 4292 Process : tabtip.exe (...)

支持所有PS版本

【Powershell小技巧之去除多余的空格】相关文章:

Windows Powershell 变量的幕后管理

PowerShell把文件删除到回收站的方法

Powershell小技巧之删除不规则字符

Windows Powershell 创建数组

Windows Powershell 变量的作用域

Powershell小技巧之查找脚本中的函数

PowerShell小技巧之使用Hotmail账号发送邮件

Powershell小技巧之查看安装的.Net framework版本信息

Powershell小技巧之设置IE代理

PowerShell函数参数用星号隐藏的方法

精品推荐
分类导航