I have a string and I want to remove all white spaces at its beginning.
I believed .Shrink() could be useful to do it but doesn't seem so. I played even with Filter and FilterWhile with no success. Of course I can prepare my own function but maybe there is already... and well hided.
Luigi
Shrink method, in general, serves to minimize the memory ocupied by object (many objects allocate more memory than is needed to store the data due to speed reasons - shrink releases this overhead).
Filters are intended to approve-reject-transform individual chatacters of string.