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