http://www.perlmonks.org?node_id=10575

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Given a string like

$string = "helloyoume.she";
How would you extract the characters from the dot (aka period, aka full stop) to the end of that string into a variable? That is, in this example, get the substring "she".

Originally posted as a Categorized Question.