脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - PowerShell - Powershell小技巧之去除多余的空格

Powershell小技巧之去除多余的空格

2020-06-23 10:45Powershell教程网 PowerShell

powershell可以帮助我们很方便的完成很多事情,今天我们就来看下如何使用powershell去除多余的空格,非常的简单实用,有需要的朋友可以参考下

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

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

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

?
1
2
3
4
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获取该文本数据的对象:
 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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版本

延伸 · 阅读

精彩推荐