I need to read files using vbscript and remove all leading spaces including any tabs. I now LTRIM will remove the leading spaces but how do I remove tabs also.
Thanks.
|
|
|
|
|
|
|
This function removes all leading whitespace (spaces, tabs etc) from a string:
|
||
|
|
|
|
Andrew's answer is not correct. LTrim, RTrim and Trim only removes spaces, not tabs. I reformatted your code, and added a function to strip any leading or trailing characters.
|
|||
|
|
|
|
|
||
|
|
|
|
For a both left and right trim (including tabs, carriage return, line feeds, spaces) in a multiline string this will work.
|
|||
|
|