Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

powershell - What is the difference between [Regex]::Replace() and -replace?

I understood the difference between .Replace() and -replace, but what are -replace and [Regex]::Replace()?

I tested the 2 following codes, but for me the results are the exactly the same.

I also referred to PowerShell Cookbook(O'reilly), and it says

([Regex] is) extremely advanced regular expression replacement

I want to know what [Regex] can but -replace can't.

$line = "Loosen the socket by turning it#counterclockwise."
$line = $line -Replace "([a-z])#([a-z])","`$1 `$2"
$line

# Loosen the socket by turning it counterclockwise.

$line.GetType()
# IsPublic IsSerial Name                                     BaseType
# -------- -------- ----                                     --------
# True     True     String                                   System.Object

$line2 = "Loosen the socket by turning it#counterclockwise."
$line2 = [Regex]::Replace($line3,"([a-z])#([a-z])","`$1 `$2")
$line2

# Loosen the socket by turning it counterclockwise.

$line2.GetType()
# IsPublic IsSerial Name                                     BaseType
# -------- -------- ----                                     --------
# True     True     String                                   System.Object
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

-Replace is a powershell operator that replaces X with Y and cannot be configured to do anything else.

[Regex] is a .NET class which contains a method called Replace and has many overloads that can configure and control how the string is replaced.

-replace probably uses [Regex]::Replace under the hood.

The reference to the Regex.Replace method contains all the many different ways it can be called.

The methods and properties contained in the Regex class.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...