in reply to How do I print characters with underline or bold?

if you use Term::ANSIColor you can do it like this:
use Term::ANSIColor; print "Please fill in ".color("underline")."one".color("reset")." valu +e\n";
but your terminal (i.e color-xterm) must support this too.

MP

Originally posted as a Categorized Answer.