I need to remove text between the delimiters \"<\" and \">\", but there are multiple instances of these on each line of my text file.
For example, I want to turn th
If you want to join the dark side, Perl lets you specify non-greedy wildcards with ?:
?
perl -pe 's/<.*?>//g' filename.csv
you can use a negated character class in your regex:
sed 's/<[^>]*>//g' filename.csv