Search
 
SCRIPT & CODE EXAMPLE
 

POWERSHELL

powershell replace character in string

Use the Replace() method on the string itself to perform simple
replacements:



PS > "Hello World".Replace("World", "PowerShell")

Hello PowerShell



Use PowerShell’s regular expression -replace operator to perform more
advanced regular expression replacements:



PS > "Hello World" -replace '(.*) (.*)','$2 $1'

World Hello



Another, less common pitfall is wanting to use characters that have
special meaning to regular expressions as part of your replacement text. For example:



PS > "Power[Shell]" -replace "[Shell]","ful"

Powfulr[fulfulfulfulful]



That’s clearly not what we intended. In regular expressions,
square brackets around a set of characters means
“match any of the characters inside of the square brackets.”
In our example, this translates to “Replace the characters S, h, e, and l with ‘ful’.”

To avoid this, we can use the regular expression escape character to escape
the square brackets:



PS > "Power[Shell]" -replace "[Shell]","ful"

Powerful



However, this means knowing all of the regular expression special
characters and modifying the input string.
Sometimes we don’t control the input string,
so the [Regex]::Escape() method comes in handy:



PS > "Power[Shell]" -replace ([Regex]::Escape("[Shell]")),"ful"

Powerful



For extremely advanced regular expression replacement needs,
you can use a script block to accomplish your replacement tasks,
as described in Recipe 31.6. For example, to capitalize the first
character (w) after a word boundary ():



PS > "hello world" -replace '(w)',{ $_.Value.ToUpper() }

Hello World
Comment

PREVIOUS NEXT
Code Example
Powershell :: How to test HDD health in PowerShell 
Powershell :: How to download jira attachments using curl 
Powershell :: To look at a profile to see information about a wifi network 
Gdscript :: godot check if in exported version 
Gdscript :: GDscript classes 
Clojure :: clojure read file line by line 
Clojure :: call function in clojure 
Lisp :: common lisp ide macos 
Erlang :: erlang exit from shell 
Assembly :: MOD OPERATOR for register in arm assembly 
Assembly :: vba check if shape name exists 
Assembly :: visual studio change assembly name 
Assembly :: dd utility seek 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: jquery disable input 
Javascript :: regex cpf 
Javascript :: setinterval jquery 
Javascript :: align image center react native 
Javascript :: get parameter from the actual url javascript 
Javascript :: update node.js dependencies 
Javascript :: How disable button jquery 
Javascript :: react native password input 
Javascript :: You seem to not be depending on "@angular/core" and/or "rxjs". This is an error. 
Javascript :: jquery datepicker no weekends 
Javascript :: remove punctuation marks from string js 
Javascript :: js reload iframe 
Javascript :: how to color console.log 
Javascript :: disable all element in div angular 12 
Javascript :: convert hexadecimal to decimal js 
Javascript :: intval js 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =