「PowerShell」split関数を使って半角スペースで区切るサンプル

書式
$変数名 = “文字列1 文字列2 文字列3″
$変数名.split(" “)
文字列を半角スペースで区切って配列にしています。
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$str = "東京 大阪 福岡"
$res = $str.split(" ")
Write-Host ("文字列1: " + $res[0])
Write-Host ("文字列2: " + $res[1])
Write-Host ("文字列3: " + $res[2])
$str = "東京 大阪 福岡" $res = $str.split(" ") Write-Host ("文字列1: " + $res[0]) Write-Host ("文字列2: " + $res[1]) Write-Host ("文字列3: " + $res[2])
$str = "東京 大阪 福岡"

$res = $str.split(" ")

Write-Host ("文字列1: " + $res[0]) 
Write-Host ("文字列2: " + $res[1]) 
Write-Host ("文字列3: " + $res[2])

実行結果

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
PS C:\study\powershell> .\test.ps1
文字列1: 東京
文字列2: 大阪
文字列3: 福岡
PS C:\study\powershell> .\test.ps1 文字列1: 東京 文字列2: 大阪 文字列3: 福岡
PS C:\study\powershell> .\test.ps1
文字列1: 東京
文字列2: 大阪
文字列3: 福岡

 

PowerShell

Posted by arkgame