- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/文法/文字列操作 へ行く。
- 1 (2016-04-04 (月) 09:52:03)
文字列結合
結合
PS> "abc" + "def" abcdef
配列をjoin
PS> $strs = @("abc", "def") PS> $strs -join "" abcdef
PS> "abc" + "def" abcdef
PS> $strs = @("abc", "def") PS> $strs -join "" abcdef