in reply to Regex question
if (m/points:(.*)/) { $points = $1; # do something with $points? } elsif (m/levels:(.*)/) { $levels = $1; # do something with $levels? } [download]