Skip to content

Instantly share code, notes, and snippets.

@bielawb
Created September 29, 2020 20:47
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/60bb3b5758756a8fe3a88d749210fc75 to your computer and use it in GitHub Desktop.
Save bielawb/60bb3b5758756a8fe3a88d749210fc75 to your computer and use it in GitHub Desktop.
Uruchamiamy ForEach z nawiasami
$zdania = @'
Zdanie
To jakieś zdanie
To zdanie jest nieco dłuższe
A w tym zdaniu lecimy już po bandzie z długością!
'@ | ConvertFrom-Csv
$zdania.ForEach(
{
$_.Zdanie.Substring(0, 12)
}
)
<#
Na wyjściu:
To jakieś zd
To zdanie je
A w tym leci
#>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment