in reply to regex for string

I think this can be a easy way interms of using regular expression ,

$_="1and2" ; /^(.).*(.)$/; print "$1 and $2 " ;

but I'm pretty sure that you can achieve this using several more simple ways