2 lines
98 B
PowerShell
2 lines
98 B
PowerShell
"I am a string" -match '\bstr' # true
|
|
"I am a string" -replace 'a\b','no' # I am no string
|