RosettaCodeData/Task/Regular-expressions/PowerShell/regular-expressions.ps1

3 lines
98 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
"I am a string" -match '\bstr' # true
"I am a string" -replace 'a\b','no' # I am no string