Working with Strings and Regular Expressions in PowerShell

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024
  • In this video, we'll be looking at manipulating string objects in powershell and how we can incorporate Regular Expressions into the mix.

Комментарии • 5

  • @fylip22b
    @fylip22b 9 месяцев назад

    Bonjour et merci pour ces exercices.
    L'utilisation des expressions régulières est synonyme de productivité !
    À bientôt. Philippe P

  • @ronron7763
    @ronron7763 6 месяцев назад

    awesome tutes, delivery is perfect, thank you

  • @nullvoid2013
    @nullvoid2013 4 месяца назад

    Thank you for this wonderful video series on Powershell! Concerning the time code 29:59 regex example matching the space or hyphen characters in the SSN: in a regex an asterisk quantifier matches 0 or MORE of the previous element. In this SSN example the question mark should be used instead of the asterisk to match 0 or 1 of the space or hyphen characters. This would prevent non SSN pattern matches e.g., “123- -45- 6789” that would match when the asterisk quantifier is used.

  • @JD-du3qe
    @JD-du3qe Год назад

    excellent detailed video, thanks!