Hi,

* Alain Bench [02-07-16 12:22:56 +0200] wrote:
> I don't know Perl, so don't know what this means, but
> there is:

> | if ( $line =~ /^From / ) {
[...]
> |     $line =~ s/".*" //;
> | }

If a line starting with ``From '' is found, this one removes
everything between double-quotes and the following space.
Example:

| From "Foo Bar" <foo@bar> ...

gets:

| From <foo@bar> ...

   bye, Rocco

Reply via email to