powershell 抑制de lignesvidesaprèsunsplit

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 抑制de lignesvidesaprèsunsplit相关的知识,希望对你有一定的参考价值。

# some ways to remove empty lines when splitting strings
# for example 

# $text = "Video  Video  Audio  Audio  VBI    VBI"
# $text.Split()
# outputs this

# Video

# Video

# Audio

# Audio

# VBI



# VBI

# 1. using powershell -split as unary operator
-split $text

# 2. Using powershell -split operator (use regular expression)
$text -split '\s+' #Here, the \s represents whitespace characters, and the + matches one or more of them.

# 3. Filter not null elements
$text.split()| where {$_}

# 3. using the .net split method :
$text.split(" ",[System.StringSplitOptions]::RemoveEmptyEntries)

以上是关于powershell 抑制de lignesvidesaprèsunsplit的主要内容,如果未能解决你的问题,请参考以下文章

powershell PSScriptAnalyzer抑制

PowerShell:如果“mkdir”命令的文件已经存在,我该如何抑制错误?

powershell Equivalente del comando grep de bash en powershell

powershell Reporte de Actualizaciones WSUS

powershell Comandos de docker

powershell 实用程序de PARAMETER