RosettaCodeData/Task/String-matching/PowerShell/string-matching.ps1

6 lines
169 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
"spicywiener".StartsWith("spicy")
"spicywiener".Contains("icy")
"spicywiener".EndsWith("wiener")
"spicywiener".IndexOf("icy")
[regex]::Matches("spicywiener", "i").count