powershell去除多余空格的方法

发布时间:2020-08-09编辑:脚本学堂
有关powershell去除多余空格的方法,在powershell脚本中使用正则表达式去除多余的空格,需要的朋友参考下。

去除多余的空格,使用正则表达式
 

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版本