I am using WinHttp.WinHttpRequest to retrieve information from a site. However the retrieved information comes with some empty spaces before the beginning, which can be removed with LeftTrim function.
But even after the string is trimmed I still get some annoying things before the first letter.
Text before Ltrim
"     Hello World!"
Text after Ltrim
"  Hello World!"
Note: Using left to display the first char of the trimmed text returns "", but trying to use IF comparison to "" doesn't work so I can't get rid of these "".
If left("  Hello World!",1) = "" then 
   ' code to remove ""
How do I remove this damn things, what is this?
 
     
    