Welcome to WuJiGu Developer Q&A 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 - How to select between multiple lines in power shell?

I am using Get-Content (gc) here. I need to delete a set of lines defined by the start and end marker. But for some reasons, the command that I use does not work. Do you know what I am missing here?

Command that I have tried:

powershell -Command ((gc test.txt) -replace '"/#start.*#end/gms"','')

test.txt:

line1
line2
#start
line3
line4
#end
line5

Expected output:

line1
line2
line5
See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Get-Content reads the file into an Array of strings. Use Get-Content -Raw to read it as one string.

powershell -Command ((Get-Content -Path test.txt -Raw) -replace '(?smi)#start(.*)#end
?
','')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...