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 ...
2
votes
4answers
2k views
What's the simplest way to return the first line of a multi-line string in Perl?
When I say simple, I mean, within an expression, so that I can stick it in as a value in a hash without preparing it first. I'll post my solution but I'm looking for a better one that reminds me less ...