in reply to Re^2: Printing set characters from offset.
in thread Printing set characters from offset.

That isn't what the "and" operator does. If you want to print 2 substrings, call substr twice, eg:

 print substr ($lines, $o1, $l1) . substr ($lines, $o2, $l2);