$CreateDT.Split(" ")
というコードを使って分割した文字列があります。 2つの別々の文字列を異なる方法で操作したいと思います。これらを2つの変数に分割する方法
このような?
$string = 'FirstPart SecondPart'
$a,$b = $string.split(' ')
$a
$b
配列は-split
演算子で作成されます。そのようです、
$myString="Four score and seven years ago"
$arr = $myString -split ' '
$arr # Print output
Four
score
and
seven
years
ago
特定のアイテムが必要なときは、配列インデックスを使ってそれに到達します。そのインデックスがゼロから始まることに注意してください。そのようです、
$arr[2] # 3rd element
and
$arr[4] # 5th element
years
2つの手法の間には、次のような違いがあります。
$Str="This is the<BR />source string<BR />ALL RIGHT"
$Str.Split("<BR />")
This
is
the
(multiple blank lines)
source
string
(multiple blank lines)
ALL
IGHT
$Str -Split("<BR />")
This is the
source string
ALL RIGHT
これから、string.split()
methodがわかります。
-split
operator:
これを試して:
$Object = 'FirstPart SecondPart' | ConvertFrom-String -PropertyNames Val1, Val2
$Object.Val1
$Object.Val2
Foreachオブジェクト操作ステートメント
$a,$b = 'hi.there' | foreach split .
$a,$b
hi
there