1. 首页
  2. 数据库
  3. 其它
  4. Powershell小技巧之去除多余的空格

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

上传者: 2021-01-16 20:54:34上传 PDF文件 29.78KB 热度 28次
要去去除多余的空格,请尝试下面正则表达式: 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获取该文
用户评论