[Date Prev][Date Next][Thread Prev][Thread Next]
[Author Index] [Date Index] [Thread Index]
[SQR-USERS Info] [SQRUG Home Page]

trimming tabs and spaces



>>Hi all, I am trying to read a file which has
>>leading tabs and spaces. Using ltrim function I
>>amable to l-trim spaces, not tabs. How to Ltrim
>>tabs?..

   let $tab = chr(9)

   let $line = ltrim(ltrim($InputLine, $tab), ' ')

Andrew :)