Help for this page
$string="He0Hello~~He2World~~"; while ($string=~m/He\d(\w+)~~/g) { print "$1\n"; }
$string=~m/He\d([^~]+)~~/g
$string=~m/He\d(.+?)~~/g