in reply to regexp help -- grab almost a whole string

if ($if_descr =~ m/DHEC\.?(\w+)/) { print "'$1'\n"; $circuite_id = $1; }

Nice and simple, no need for look-arounds whatsoever.