RosettaCodeData/Task/Regular-expressions/PowerShell/regular-expressions.psh
2023-07-01 13:44:08 -04:00

2 lines
98 B
Text

"I am a string" -match '\bstr' # true
"I am a string" -replace 'a\b','no' # I am no string