- or download this
package MyClass;
use Moose;
...
is => 'rw',
isa => subtype('Str', where { /^[\w-]+$/ }),
);
- or download this
package MyClass;
use Moose;
...
is => 'rw',
isa => 'StringWithDashes'
);
- or download this
use Email::Valid;
...
is => 'rw',
isa => subtype('Str', where { Email::Valid->address($_) })
);