Collections:
Other Resources:
String Replacement in Windows PowerShell
How to replace a part of a string in Windows PowerShell?
✍: FYIcenter.com
You can use the "-Replace" operation to replace a part of a string in Windows PowerShell.
Here is the syntax of the "-Replace" operation:
$subject -Replace $pattern,$replacement
Regular expression is supported in $pattern.
Here are some good examples of string comparison operations:
PS C:\fyicenter> "You should eat ice cream" -Replace "ice cream","fruits" You should eat fruits PS C:\fyicenter> "Feb 14, 2016" -Replace "(\w+) (\d+), (\d+)",'$2-$1-$3' 14-Feb-2016
Note that captured groups in regular expression pattern match are used in the replacement expression. The single-quoted string literal is used to preventing immediate variable expansion.
⇒ String Object Methods in Windows PowerShell
⇐ String Comparison in Windows PowerShell
2016-10-19, ∼2938🔥, 0💬
Popular Posts:
How to configure a wireless router? Usually, wireless routers are shipped with a default configurati...
UpdateUI.exe at startup ,how to remove it Actually, you should keep UpdaterUI.exe as a startup, beca...
Where to find tutorials on managing Windows 7 scheduled tasks? Here is a collection of tutorials on ...
What files are stored in the "C:\Users\<userid >\AppData\Local\M icrosoft\Windows\Tempor. ..
How to set up Internet Explorer 8, or IE 8? After downloading Internet Explorer 8. or IE 8, you shou...