# ----------------------------------------------------------------------------- # Milkbone::Util # Generic Milkbone utilities # ----------------------------------------------------------------------------- package Milkbone::Util; use strict; use warnings; use Carp; our @ISA = qw(Exporter); our @EXPORT = qw(); our @EXPORT_OK = qw(slurp win32 nix nt loaded_files user_path strip_html path); # read a file in one big slurp sub slurp { my ($file, $no_chomp) = @_; open(my $handle, $file) or die "Failed loading $file"; my @all = <$handle>; close($handle); chomp @all unless $no_chomp; if(wantarray) { return @all; } else { return join('', @all); } } # general heuristic for removing html from a string sub strip_html { $_ = shift; s/
/\n/gi; s/<.*?>//gi; s/&/&/gi; s/>/>/gi; s/</