Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Remove Characters in a String

$
0
0

Summary: Learn how to use Windows PowerShell to remove specific characters in a string.

Hey, Scripting Guy! Question I have a string that includes braces:

$a = '{Abcde}'

   I want to remove the braces, but keep the text string inside the braces.
   How can I do this by using Windows PowerShell?

Hey, Scripting Guy! Answer Use the –Replace operator, create a regular expression pattern that includes only the braces you want to remove,
           and then write the results back to the variable, for example:

PS C:\> $a = '{Abcde}'

PS C:\> $a -replace '[{}]',''

abcde

PS C:\> $a = $a -replace '[{}]',''

PS C:\> $a

abcde

Note  This command uses single, back-to-back quotation marks .


Viewing all articles
Browse latest Browse all 3333

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>