2 lines
74 B
PowerShell
2 lines
74 B
PowerShell
$words = "Hello,How,Are,You,Today".Split(',')
|
|
[string]::Join('.', $words)
|