Posted on 28th April 2025|44 views
How will we Replace Strings in Powershell?
Posted on 28th April 2025| views
The text present in the string can be replaced using the “replace” operator.
Example:
PS > “Hai World".Replace(“World”, “Viswanath”)
Hai Viswanath