Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@bielawb
Created October 9, 2020 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bielawb/2075443275a2ed5d60c6317aca6c7c5e to your computer and use it in GitHub Desktop.
Save bielawb/2075443275a2ed5d60c6317aca6c7c5e to your computer and use it in GitHub Desktop.
Uruchamiamy ForEach z klamrami
$zdania = @'
Zdanie
PiSzeMy wieLKImi i MałyMi literAMI.
KRZYCZĘ! KRZYCZĘ! KRZYCZĘ!
A na Koniec Wszystko Będzie Małą Literą.
'@ | ConvertFrom-Csv
$zdania.ForEach{ $_.Zdanie.ToLower() }
<#
Na wyjściu:
piszemy wielkimi i małymi literami.
krzyczę! krzyczę! krzyczę!
a na koniec wszystko będzie małą literą.
#>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment