Tagged Questions

5
votes
5answers
817 views

How can I delete characters between < and > in Perl?

I need to write a Perl script to read in a file, and delete anything inside < >, even if they're on different lines. That is, if the input is: Hello, world. I <enjoy eating bagels. They are ...
3
votes
3answers
870 views

How to do multiline search using regular expression?

I am new to regular expressions. I want to do multiline search. Here is the example of what I want to do: Suppose I have following text: *Project #1: CVC – Customer Value Creation (Sep 2007 – ...
2
votes
2answers
301 views

Javascript regular expression string-replacement of multi-line strings

With JavaScript regular expression replace, trying to replace anything between <head> and </head> tags so that: <head> Multiline foo </head> <body> Multi line bar ...
1
vote
3answers
130 views

Conditional Multi-Line Grep Problem [closed]

I have a very large file I want to extract lines from. I'm hoping Grep can do the job, but I'm running into problems. I want to return all lines that match a pattern. However, if the following line ...