1 SUB DTC_Clean_Up_LINE(A$) ! Strip leading spaces and tabs from the input string ! Convert multiple spaces/tabs to single spaces/tabs ! Discard control characters ! convert lower to uppercase 3 A$=EDIT$(A$,4%+8%+16%+32%) ! Make line nice END SUB