NAME

Acme::Cavaspazi - a simple function to remove spaces from strings or lists of strings

VERSION

version 1.0.3

SYNOPSIS

use Acme::Cavaspazi;
my $input = "with spaces";
my $filepath = cavaspazi($input);

cavaspazi()

Remove spaces from the input string or the strings in the input array.

Used in scalar context, returns a scalar.

use Acme::Cavaspazi;
my $input = "with spaces";
print cavaspazi($input), "\n";

Used in list context, returns a list:

use Acme::Cavaspazi;
my @input = ("with spaces", "and more spaces");
print ":".join(cavaspazi(@input), "\n");

SEE ALSO

this module ships a binary script called cavaspazi that can be used to remove spaces from filenames or file contents.

ACKNOWLEDGEMENTS

This module is a tribute to the resilience of pioneer bioinformaticians working with Perl to convert files and fix formats.

The bioinformaticians trained by Nicola Vitulo are grateful for the lack of spaces.

In those foggy times a script called cavaspazi.pl became a pillar of complex pipelines. It was cool, except it didn't remove spaces.

AUTHOR

Andrea Telatin <proch@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2023 by Andrea Telatin, Nicola Vitulo.

This is free software, licensed under:

The MIT (X11) License