标签:style blog http color 使用 sp 2014 log tt
直接用 -split,默认以空白分隔
-split $a
用正则表达式中的 \s,-join -replace -split中都可以直接使用正则表达式
$a -split ‘\s+‘
$a -replace ("\s+","`n")
用split方法
[regex]::split($a,"\b\s+\b")
用替换方法替换掉空格
[regex]::replace($a,"\b\s+\b"," ").split(" ")
用非空表达式取出符合要求的值
[regex]::matches($a,"\b\S+\b") | %{$_.value}
标签:style blog http color 使用 sp 2014 log tt
原文地址:http://www.cnblogs.com/dreamer-fish/p/4081595.html