“PowerShell to String” Ответ

PowerShell to String

#Powershell
$composers = @("Johann Sebastian Bach", "Wolfgang Amadeus Mozart", "Frederic Francois Chopin", "Johannes Brahms")
$composers | Convert-String -Example "first middle last=last, first"

Bach, Johann
Mozart, Wolfgang
Chopin, Frederic
Brahms, Johannes
Xabos

переменная PowerShell к строке

# cast your variable

$otherVar = 1
$myString = [string]$otherVar

# myString = "1"
Av3

Ответы похожие на “PowerShell to String”

Вопросы похожие на “PowerShell to String”

Больше похожих ответов на “PowerShell to String” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования